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 from matplotlib import 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 4.33 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.47 us (56.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 : 811.00 ns (0.1%)
patch tree reduce : 1.20 us (0.2%)
gen split merge : 1.02 us (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.2%)
LB compute : 666.63 us (98.4%)
LB move op cnt : 0
LB apply : 3.35 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 : 9.78 us (2.9%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 316.39 us (93.6%)
LB move op cnt : 0
LB apply : 2.37 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.1%)
Info: defaulting reduction implementation to impl : {"implementation":"group_reduction","parameters":{"group_size":128}} [algs][rank=0]
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.6679e+05 | 65536 | 2 | 1.787e-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.25 us (1.8%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 267.38 us (93.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.7%)
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.4459e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.21638254989348 (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.38 us (1.9%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 260.77 us (93.0%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.0%)
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 | 6.0618e+05 | 65536 | 2 | 1.081e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.03452237558476 (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 : 5.54 us (1.9%)
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.10 us (0.4%)
LB compute : 278.40 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.25 us (61.6%)
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 | 6.0357e+05 | 65536 | 2 | 1.086e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.71987077938962 (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 : 5.15 us (2.1%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 224.57 us (92.0%)
LB move op cnt : 0
LB apply : 3.46 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (63.4%)
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 | 6.1467e+05 | 65536 | 2 | 1.066e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.17173089683662 (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.25 us (2.0%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 237.28 us (92.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (52.7%)
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 | 5.8643e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.74290591240542 (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.71 us (2.3%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 224.55 us (91.8%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.9%)
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 | 6.0591e+05 | 65536 | 2 | 1.082e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.37643075916023 (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 : 5.26 us (2.2%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 215.44 us (91.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (62.1%)
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 | 6.0710e+05 | 65536 | 2 | 1.079e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.31683798520704 (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 : 6.08 us (2.7%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.42 us (0.6%)
LB compute : 204.21 us (90.7%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (64.0%)
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 | 6.2594e+05 | 65536 | 2 | 1.047e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.98960132696756 (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.72 us (2.4%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 222.98 us (91.7%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (59.4%)
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 | 6.1938e+05 | 65536 | 2 | 1.058e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.18841062945197 (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.14 us (2.5%)
patch tree reduce : 1.72 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 183.55 us (90.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.8%)
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 | 6.2619e+05 | 65536 | 2 | 1.047e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.2849075528831 (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.38 us (2.3%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 211.23 us (91.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (57.8%)
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 | 5.7640e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.704370793841356 (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 : 5.20 us (2.5%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 189.94 us (90.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (55.9%)
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.4750e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.02210635351635 (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.29 us (2.4%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 200.80 us (91.0%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (58.5%)
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.7130e+05 | 65536 | 2 | 1.391e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.502017920919414 (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.50 us (2.1%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 237.70 us (92.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.6%)
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 | 4.7108e+05 | 65536 | 2 | 1.391e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.128928363574055 (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 : 5.06 us (2.0%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 227.90 us (92.1%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.7%)
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 | 4.6151e+05 | 65536 | 2 | 1.420e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.85483720231408 (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.32 us (2.3%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.39 us (0.6%)
LB compute : 209.15 us (91.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.9%)
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 | 6.0425e+05 | 65536 | 2 | 1.085e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.46194340115177 (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.17 us (2.5%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 188.79 us (90.7%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.5%)
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 | 6.1563e+05 | 65536 | 2 | 1.065e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.5568356406116 (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.26 us (2.3%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 210.59 us (91.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (51.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 | 5.4874e+05 | 65536 | 2 | 1.194e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.650747347444515 (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.48 us (2.3%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 214.49 us (91.8%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.1%)
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 | 4.8647e+05 | 65536 | 2 | 1.347e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.03047641384704 (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.16 us (1.9%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 245.36 us (92.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (59.1%)
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 | 5.9195e+05 | 65536 | 2 | 1.107e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.65582145562129 (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.57 us (2.5%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 195.40 us (86.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.4%)
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 | 5.7427e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.73776112613421 (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.38 us (2.2%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 221.95 us (91.9%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.1%)
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 | 5.6971e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.241855177477625 (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.25 us (2.2%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 218.90 us (91.9%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.5%)
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 | 5.5750e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.980271146486906 (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.61 us (2.3%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 224.36 us (92.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.0%)
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 | 4.3525e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.30217640341196 (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.28 us (2.2%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 215.00 us (91.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (61.5%)
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 | 5.9234e+05 | 65536 | 2 | 1.106e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.15631044620281 (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.15 us (2.3%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 206.68 us (91.6%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.9%)
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 | 6.1752e+05 | 65536 | 2 | 1.061e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.658366661609215 (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.42 us (2.5%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 199.98 us (91.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.4%)
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 | 6.0919e+05 | 65536 | 2 | 1.076e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.82094171445047 (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.70 us (2.6%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 198.89 us (91.2%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (55.8%)
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 | 6.0411e+05 | 65536 | 2 | 1.085e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.135657063183736 (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.69 us (2.5%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 207.56 us (91.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (59.4%)
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 | 6.1411e+05 | 65536 | 2 | 1.067e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.97950683599993 (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.45 us (2.1%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 244.95 us (92.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (62.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 | 5.8626e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.09250904337422 (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.55 us (2.6%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.70 us (0.8%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 191.36 us (90.4%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (61.6%)
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 | 5.8862e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.31803216889947 (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.20 us (2.4%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 197.18 us (91.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.1%)
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 | 5.8840e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.24682553356735 (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.26 us (2.2%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 215.78 us (91.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.0%)
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 | 5.9602e+05 | 65536 | 2 | 1.100e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.822969776330574 (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.76 us (2.6%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 200.84 us (91.1%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (60.6%)
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 | 5.9708e+05 | 65536 | 2 | 1.098e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.82485461362473 (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.40 us (2.5%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 197.31 us (91.0%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.3%)
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 | 5.8881e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.96170215186247 (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.53 us (2.6%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 193.78 us (91.0%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.3%)
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 | 6.0067e+05 | 65536 | 2 | 1.091e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.16526339246391 (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 : 4.94 us (2.2%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 208.26 us (91.5%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (62.8%)
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 | 5.8225e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.162452066902475 (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.50 us (2.6%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 191.65 us (91.0%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (62.6%)
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 | 5.8677e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.485085141622754 (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 : 4.93 us (2.3%)
patch tree reduce : 1.82 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 191.66 us (91.3%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (53.1%)
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 | 5.8365e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.11402861556828 (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.52 us (2.2%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 226.94 us (92.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.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 | 5.8069e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.813048250253175 (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.82 us (2.7%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 194.86 us (90.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.7%)
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 | 5.0914e+05 | 65536 | 2 | 1.287e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.65393101389792 (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.59 us (2.6%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 194.40 us (90.8%)
LB move op cnt : 0
LB apply : 2.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.9%)
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 | 5.1379e+05 | 65536 | 2 | 1.276e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.980421603226404 (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.32 us (2.1%)
patch tree reduce : 2.28 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 230.58 us (92.2%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.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 | 5.6248e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.728974449846355 (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.49 us (2.6%)
patch tree reduce : 1.83 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 193.21 us (90.9%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.6%)
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 | 5.8916e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.341521811589054 (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 : 5.72 us (2.3%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 224.35 us (91.8%)
LB move op cnt : 0
LB apply : 3.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (59.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 | 5.8185e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.63143681041696 (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.56 us (1.9%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 271.18 us (93.3%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (50.7%)
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 | 5.8022e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.353770522913884 (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.64 us (2.4%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 213.59 us (91.7%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (57.9%)
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 | 5.8235e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.45253483194513 (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.13 us (1.9%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 250.77 us (92.9%)
LB move op cnt : 0
LB apply : 3.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (63.2%)
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 | 5.9739e+05 | 65536 | 2 | 1.097e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.88057373388286 (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.18 us (2.3%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 207.43 us (91.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (63.1%)
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 | 6.1560e+05 | 65536 | 2 | 1.065e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.66597741701448 (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.69 us (2.4%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 214.42 us (91.5%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (60.3%)
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 | 6.1589e+05 | 65536 | 2 | 1.064e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.68811286135763 (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.40 us (2.3%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 211.29 us (91.5%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.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 | 6.1601e+05 | 65536 | 2 | 1.064e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.5560653621414 (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.14 us (2.2%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 212.61 us (91.6%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (59.0%)
Info: cfl dt = 0.0017861138817836654 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1766e+05 | 65536 | 2 | 1.061e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.634239680127145 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09817839906580181, dt = 0.0017861138817836654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 186.66 us (90.8%)
LB move op cnt : 0
LB apply : 2.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.9%)
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 | 6.2274e+05 | 65536 | 2 | 1.052e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.099280726901235 (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 : 4.89 us (2.1%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 215.34 us (92.0%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (53.1%)
Info: cfl dt = 0.001784274294111057 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0009e+05 | 65536 | 2 | 1.092e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.88426730462512 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10175085120449263, dt = 0.001784274294111057
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 206.78 us (91.5%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.5%)
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 | 5.2867e+05 | 65536 | 2 | 1.240e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.817078617842554 (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 : 5.57 us (2.7%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 190.50 us (90.8%)
LB move op cnt : 0
LB apply : 2.88 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.7%)
Info: cfl dt = 0.001779388728521142 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.368759436618575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1053162093809068, dt = 0.001779388728521142
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 253.48 us (92.6%)
LB move op cnt : 0
LB apply : 3.66 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (60.0%)
Info: cfl dt = 0.0017789424783942152 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4502e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.49797185663795 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10709559810942794, dt = 0.0017789424783942152
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 242.94 us (92.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.6%)
Info: cfl dt = 0.0017795268008289748 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2032e+05 | 65536 | 2 | 1.056e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.617447169323135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10887454058782216, dt = 0.0017795268008289748
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.9%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 235.13 us (91.7%)
LB move op cnt : 0
LB apply : 3.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (46.9%)
Info: cfl dt = 0.001776108493421142 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4673e+05 | 65536 | 2 | 1.199e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.444130276446444 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11065406738865113, dt = 0.001776108493421142
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 224.47 us (91.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.6%)
Info: cfl dt = 0.0017737399778239595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9171e+05 | 65536 | 2 | 1.333e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.97384073032133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11243017588207227, dt = 0.0017737399778239595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 206.93 us (91.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.7%)
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 | 6.1118e+05 | 65536 | 2 | 1.072e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.55004235641351 (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.10 us (2.0%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 238.23 us (92.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (53.8%)
Info: cfl dt = 0.0017725973559036454 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9083e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.530930644073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11597655261444148, dt = 0.0017725973559036454
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.26 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 219.51 us (91.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (57.2%)
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 | 6.0167e+05 | 65536 | 2 | 1.089e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.58591146765111 (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.46 us (2.3%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 213.66 us (91.7%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.3%)
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 | 6.0498e+05 | 65536 | 2 | 1.083e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.890194498193054 (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.29 us (2.4%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 203.38 us (91.0%)
LB move op cnt : 0
LB apply : 3.45 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (52.1%)
Info: cfl dt = 0.001767331757681222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1055e+05 | 65536 | 2 | 1.073e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.33155968346471 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12129027699647238, dt = 0.001767331757681222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 237.93 us (92.6%)
LB move op cnt : 0
LB apply : 3.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (59.8%)
Info: cfl dt = 0.0017666842650221257 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7476e+05 | 65536 | 2 | 1.380e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.09103851490113 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1230576087541536, dt = 0.0017666842650221257
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 218.38 us (91.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (59.6%)
Info: cfl dt = 0.0017669511589051949 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.565519538544386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12482429301917572, dt = 0.0017669511589051949
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 214.39 us (91.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.7%)
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.3741e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.456010554591536 (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.77 us (2.4%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 218.19 us (91.5%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.0%)
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.4469e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.12054626099459 (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.63 us (2.4%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 216.33 us (91.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (57.7%)
Info: cfl dt = 0.0017617006464616405 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.96683944189332 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1301194134182317, dt = 0.0017617006464616405
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 204.18 us (91.1%)
LB move op cnt : 0
LB apply : 3.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (57.7%)
Info: cfl dt = 0.0017614054020814434 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.89690855572875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13188111406469333, dt = 0.0017614054020814434
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 231.84 us (92.1%)
LB move op cnt : 0
LB apply : 3.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (50.7%)
Info: cfl dt = 0.0017619021322769286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3043e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.64727823200191 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13364251946677477, dt = 0.0017619021322769286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 217.73 us (91.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (60.2%)
Info: cfl dt = 0.0017593187561237 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.440822271757476 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1354044215990517, dt = 0.0017593187561237
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 223.54 us (91.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.5%)
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.2784e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.34721245756162 (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.16 us (2.0%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 244.63 us (92.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (58.9%)
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 | 4.2391e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.92634742871426 (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.25 us (1.8%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 266.20 us (93.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (60.5%)
Info: cfl dt = 0.0017567003169303285 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.39879361321617 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14067801387953233, dt = 0.0017567003169303285
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 242.42 us (92.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.3%)
Info: cfl dt = 0.0017564246524487787 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2644e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.15100555019205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14243471419646264, dt = 0.0017564246524487787
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 220.46 us (91.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (52.8%)
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 | 4.2563e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.06585132586031 (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.33 us (2.0%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 251.70 us (92.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (54.3%)
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 | 4.2040e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.50853940319248 (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.28 us (1.7%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 288.08 us (93.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.6%)
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 | 4.1904e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.34709884747606 (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.76 us (2.4%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 223.43 us (91.9%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (55.8%)
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 | 4.1982e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.41024745436629 (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 : 5.44 us (2.3%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 211.75 us (91.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (60.1%)
Info: cfl dt = 0.001751391880286672 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2079e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.50832627637719 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15120288346453434, dt = 0.001751391880286672
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 236.48 us (92.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (58.2%)
Info: cfl dt = 0.0017495916104509942 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2576e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.9607144674076 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.152954275344821, dt = 0.0017495916104509942
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 218.91 us (91.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.1%)
Info: cfl dt = 0.001748618535054815 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1679e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.056578417941864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.154703866955272, dt = 0.001748618535054815
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 : 1.67 us (0.3%)
gen split merge : 1.04 us (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.2%)
LB compute : 459.38 us (95.8%)
LB move op cnt : 0
LB apply : 3.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (58.7%)
Info: cfl dt = 0.0017483543546392617 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.038238422008746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1564524854903268, dt = 0.0017483543546392617
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 225.06 us (92.2%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.9%)
Info: cfl dt = 0.0017487039598497887 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.60351422287645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15820083984496608, dt = 0.0017487039598497887
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 220.05 us (91.7%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (58.0%)
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 | 4.2834e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.14613365611653 (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.26 us (2.3%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 211.14 us (91.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.6%)
Info: cfl dt = 0.0017455728813794457 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1732e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.04785565523351 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16169652330069434, dt = 0.0017455728813794457
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 210.33 us (91.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.3%)
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 | 4.4133e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.31824772788993 (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.15 us (1.9%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 244.92 us (92.4%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.8%)
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 | 5.6725e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.37097013050691 (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.44 us (2.1%)
patch tree reduce : 2.26 us (0.9%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 240.18 us (92.4%)
LB move op cnt : 0
LB apply : 3.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (58.5%)
Info: cfl dt = 0.001744907299463441 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9648e+05 | 65536 | 2 | 1.320e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.58547349728865 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16693180162193358, dt = 0.001744907299463441
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 20.53 us (7.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 229.07 us (85.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (43.1%)
Info: cfl dt = 0.001743092765173396 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2390e+05 | 65536 | 2 | 1.050e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.801471966136546 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16867670892139702, dt = 0.001743092765173396
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 235.89 us (92.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.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.5257e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.33401488600556 (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.44 us (2.3%)
patch tree reduce : 1.61 us (0.7%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 216.34 us (91.9%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (60.9%)
Info: cfl dt = 0.0017415527316687557 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.38482248596247 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17216180987294788, dt = 0.0017415527316687557
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 245.42 us (92.8%)
LB move op cnt : 0
LB apply : 3.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (55.5%)
Info: cfl dt = 0.0017416421857145697 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.51008712129267 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17390336260461664, dt = 0.0017416421857145697
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 201.77 us (90.9%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (54.7%)
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 | 6.1484e+05 | 65536 | 2 | 1.066e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.822902911025494 (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.23 us (2.1%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 229.00 us (92.3%)
LB move op cnt : 0
LB apply : 3.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (54.7%)
Info: cfl dt = 0.0017396547645334413 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6625e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.157366498137065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1773861176381734, dt = 0.0017396547645334413
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 226.44 us (91.8%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (57.8%)
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 | 4.6516e+05 | 65536 | 2 | 1.409e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.45190186082031 (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.31 us (2.5%)
patch tree reduce : 1.82 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 192.50 us (90.9%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (62.6%)
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 | 4.6357e+05 | 65536 | 2 | 1.414e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.27907072794521 (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.45 us (2.5%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 196.61 us (91.2%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (55.0%)
Info: cfl dt = 0.0017387779089120114 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9192e+05 | 65536 | 2 | 1.107e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.529251847246286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1826031724041713, dt = 0.0017387779089120114
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 228.47 us (92.2%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.7%)
Info: cfl dt = 0.001737764655339081 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1346e+05 | 65536 | 2 | 1.068e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.59360724550805 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18434195031308329, dt = 0.001737764655339081
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 197.27 us (91.3%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.4%)
Info: cfl dt = 0.001736602090424917 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8412e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.75923202148432 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18607971496842238, dt = 0.001736602090424917
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 199.84 us (91.0%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.5%)
Info: cfl dt = 0.001735998436959443 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8260e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.57638930764828 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1878163170588473, dt = 0.001735998436959443
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.59 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 231.58 us (92.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.1%)
Info: cfl dt = 0.0017358809987883927 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8961e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.226417598485035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18955231549580673, dt = 0.0017358809987883927
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 193.73 us (91.0%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.9%)
Info: cfl dt = 0.0017361888402087462 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9971e+05 | 65536 | 2 | 1.093e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.185240709240894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1912881964945951, dt = 0.0017361888402087462
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 217.52 us (91.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (58.3%)
Info: cfl dt = 0.0017347993991165941 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0202e+05 | 65536 | 2 | 1.089e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.416069247839964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19302438533480384, dt = 0.0017347993991165941
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.68 us (0.8%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 202.07 us (91.4%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (59.1%)
Info: cfl dt = 0.0017338824521995393 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8710e+05 | 65536 | 2 | 1.116e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.94798379441981 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19475918473392043, dt = 0.0017338824521995393
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 201.12 us (91.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.6%)
Info: cfl dt = 0.0017334571052422473 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9116e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.30468328902495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19649306718611997, dt = 0.0017334571052422473
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 214.65 us (91.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (61.1%)
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 | 5.9108e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.28323876550277 (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.87 us (2.7%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 198.01 us (90.8%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (61.1%)
Info: cfl dt = 0.0017333748516999551 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9387e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.54929888010433 (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.35 us (2.5%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 191.99 us (90.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.9%)
Info: cfl dt = 0.0017333467241556976 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0868e+05 | 65536 | 2 | 1.077e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3379216520549158 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 22.116064468 (s) [Godunov][rank=0]
Info: defaulting sort by key (pow2 len) implementation to impl : {"implementation":"bitonic_sort","parameters":{"stencil_size":16}} [algs][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 1.79 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.68 us (59.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 : 851.00 ns (0.4%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.4%)
LB compute : 203.22 us (95.8%)
LB move op cnt : 0
LB apply : 2.47 us (1.2%)
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.28 us (3.7%)
patch tree reduce : 1.59 us (0.6%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.3%)
LB compute : 232.22 us (91.5%)
LB move op cnt : 0
LB apply : 2.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.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.2168e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.5% 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.32 us (2.1%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 237.67 us (92.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.1%)
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 | 5.6774e+05 | 65536 | 2 | 1.154e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.61966550746922 (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.69 us (2.5%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 208.54 us (91.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (55.7%)
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 | 5.7982e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.89696049740805 (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.57 us (2.3%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 225.78 us (91.8%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.7%)
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 | 5.6255e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.84757179074732 (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.33 us (2.2%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 219.20 us (91.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.2%)
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 | 5.6384e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.6954223840082 (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.92 us (2.5%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 215.00 us (90.3%)
LB move op cnt : 0
LB apply : 4.46 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (62.1%)
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 | 5.4968e+05 | 65536 | 2 | 1.192e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.0949135023396 (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.59 us (2.2%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.29 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 239.36 us (92.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (59.3%)
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 | 4.4286e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.16113196415579 (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 : 6.10 us (1.9%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 286.12 us (91.4%)
LB move op cnt : 0
LB apply : 9.41 us (3.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (66.1%)
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 | 5.4553e+05 | 65536 | 2 | 1.201e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.48949699940126 (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.42 us (2.0%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 256.25 us (92.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (57.2%)
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 | 5.1322e+05 | 65536 | 2 | 1.277e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.16651536246549 (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.81 us (2.2%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 244.00 us (92.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (63.6%)
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 | 5.4636e+05 | 65536 | 2 | 1.200e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.62920506656856 (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.19 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 269.62 us (93.3%)
LB move op cnt : 0
LB apply : 3.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.5%)
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.2046e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.61214089644445 (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.31 us (2.0%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 247.77 us (92.8%)
LB move op cnt : 0
LB apply : 3.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.6%)
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 | 4.4373e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.86732069603705 (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.77 us (2.2%)
patch tree reduce : 2.23 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 246.84 us (92.6%)
LB move op cnt : 0
LB apply : 3.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.51 us (94.6%)
Info: cfl dt = 0.0018778209476821863 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.56102036052639 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025104462688548237, dt = 0.0018778209476821863
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 248.30 us (93.0%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (55.0%)
Info: cfl dt = 0.001862809627536163 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.360487758270004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026982283636230422, dt = 0.001862809627536163
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 224.50 us (92.1%)
LB move op cnt : 0
LB apply : 3.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (59.0%)
Info: cfl dt = 0.001855475498010032 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9240e+05 | 65536 | 2 | 1.106e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.61871120215883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028845093263766584, dt = 0.001855475498010032
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 207.78 us (91.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (58.6%)
Info: cfl dt = 0.0018535671212540938 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2202e+05 | 65536 | 2 | 1.255e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.206353966942316 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030700568761776615, dt = 0.0018535671212540938
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 217.89 us (91.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (58.8%)
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 | 5.6597e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.62648929441643 (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.33 us (2.5%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 195.37 us (90.9%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (56.5%)
Info: cfl dt = 0.0018250658910450616 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9277e+05 | 65536 | 2 | 1.106e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.974012149737895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03439599590430315, dt = 0.0018250658910450616
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 222.32 us (91.9%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.8%)
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 | 5.8200e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.3479926951503 (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.37 us (2.1%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 235.83 us (92.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.4%)
Info: cfl dt = 0.0018176015720027018 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.83515522594321 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03803948288197452, dt = 0.0018176015720027018
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 239.28 us (92.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (59.3%)
Info: cfl dt = 0.0018187998457510242 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.56738632826872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.039857084453977225, dt = 0.0018187998457510242
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 202.64 us (91.3%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.1%)
Info: cfl dt = 0.0018034901965326268 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1797e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.75883564176369 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04167588429972825, dt = 0.0018034901965326268
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 210.01 us (91.6%)
LB move op cnt : 0
LB apply : 2.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (58.8%)
Info: cfl dt = 0.0017956047438197522 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1070e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.68783296215468 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04347937449626088, dt = 0.0017956047438197522
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 205.75 us (91.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (57.6%)
Info: cfl dt = 0.0017934915300478465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1664e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.09537639107905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.045274979240080636, dt = 0.0017934915300478465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 223.37 us (91.9%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (47.4%)
Info: cfl dt = 0.001794856083579408 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2637e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.00617256817976 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04706847077012848, dt = 0.001794856083579408
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 224.14 us (91.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.2%)
Info: cfl dt = 0.0017873322255620488 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1908e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.318867284768565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04886332685370789, dt = 0.0017873322255620488
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 205.11 us (91.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (55.5%)
Info: cfl dt = 0.001778707964084057 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1434e+05 | 65536 | 2 | 1.582e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.68019762899987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05065065907926994, dt = 0.001778707964084057
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 230.61 us (92.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (60.9%)
Info: cfl dt = 0.0017757677878620826 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1296e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.349463094668984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.052429367043354, dt = 0.0017757677878620826
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.36 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 214.19 us (91.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.8%)
Info: cfl dt = 0.0017765479422788453 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9994e+05 | 65536 | 2 | 1.311e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.76752401127116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.054205134831216084, dt = 0.0017765479422788453
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 230.95 us (92.5%)
LB move op cnt : 0
LB apply : 3.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.6%)
Info: cfl dt = 0.0017746761050471418 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8952e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.530844068731234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05598168277349493, dt = 0.0017746761050471418
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 215.51 us (91.8%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.1%)
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.3339e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.24939549139231 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05775635887854207, 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.80 us (2.5%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.46 us (0.6%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 212.47 us (91.3%)
LB move op cnt : 0
LB apply : 2.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (57.3%)
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 | 4.1990e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.70398748016298 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0595210373582644, 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.33 us (2.2%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 222.03 us (92.1%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (54.4%)
Info: cfl dt = 0.0017610272789614473 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.24808396322141 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.061281714767407625, dt = 0.0017610272789614473
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 223.01 us (91.7%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (59.0%)
Info: cfl dt = 0.0017632056750679678 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0931e+05 | 65536 | 2 | 1.601e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.59498797186409 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06304274204636907, dt = 0.0017632056750679678
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 241.61 us (92.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (59.5%)
Info: cfl dt = 0.0017520856549966615 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2466e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.13057947737887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06480594772143704, dt = 0.0017520856549966615
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 203.89 us (91.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (59.1%)
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.2833e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.22498168481216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0665580333764337, 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.31 us (1.9%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 254.33 us (93.0%)
LB move op cnt : 0
LB apply : 3.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (62.5%)
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.2736e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.02018803185239 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06830536919797135, 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.59 us (2.4%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 213.12 us (91.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (57.2%)
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.2589e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.86766779034278 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07005223664487703, 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.24 us (2.4%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 202.28 us (91.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.5%)
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 | 4.3007e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.330559545903995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07180173114863608, 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.54 us (2.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 206.90 us (91.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (57.4%)
Info: cfl dt = 0.0017349233507292232 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2498e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.639676338329 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07354257994420406, dt = 0.0017349233507292232
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.71 us (0.8%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 195.55 us (90.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (59.8%)
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.2946e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.9289182012617 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07527750329493328, 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.33 us (2.4%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 205.08 us (91.5%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (59.2%)
Info: cfl dt = 0.0017357566582896413 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.32593746704906 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07701118663866813, dt = 0.0017357566582896413
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 207.78 us (91.5%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (58.8%)
Info: cfl dt = 0.0017315528522539138 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.34553955905901 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07874694329695776, dt = 0.0017315528522539138
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 15.98 us (6.6%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 211.35 us (87.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (59.5%)
Info: cfl dt = 0.0017241658949628225 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.25737464885304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08047849614921168, dt = 0.0017241658949628225
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.35 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 208.01 us (91.3%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.0%)
Info: cfl dt = 0.001721920777203627 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3868e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.54826107708738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08220266204417451, dt = 0.001721920777203627
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.8%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 204.61 us (91.2%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (57.0%)
Info: cfl dt = 0.001723238217128666 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4081e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.695084865751156 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08392458282137813, dt = 0.001723238217128666
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 235.77 us (92.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (63.4%)
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 | 4.3103e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.801029595330476 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0856478210385068, 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.52 us (2.5%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 205.06 us (91.4%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.6%)
Info: cfl dt = 0.0017158098354819063 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.941732605063535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08737268992130767, dt = 0.0017158098354819063
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 248.69 us (92.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (60.3%)
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.3068e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.59263514215481 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08908849975678958, 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.49 us (2.3%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 215.14 us (91.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (48.5%)
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 | 4.2338e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.8212667583999 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0908007264989378, 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 : 6.62 us (2.9%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 209.40 us (91.2%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.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.3037e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.48162924942808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09251308022114942, 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 : 5.37 us (2.1%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 236.59 us (92.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (61.0%)
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.3195e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.69740355560071 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09422826920778044, 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.41 us (2.1%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 242.24 us (92.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (58.1%)
Info: cfl dt = 0.0017052234795964488 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2532e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.96311760589394 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09593874555729681, dt = 0.0017052234795964488
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 206.56 us (91.2%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.7%)
Info: cfl dt = 0.0017038957954208327 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.05140761886986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09764396903689326, dt = 0.0017038957954208327
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 242.51 us (92.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (55.6%)
Info: cfl dt = 0.0017054254494145724 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.05998199446947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0993478648323141, dt = 0.0017054254494145724
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 218.21 us (91.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (58.8%)
Info: cfl dt = 0.0017083454641065884 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.78645078287533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10105329028172867, dt = 0.0017083454641065884
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 220.68 us (91.9%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (64.6%)
Info: cfl dt = 0.0017011708017333317 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9123e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.48252116581101 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10276163574583526, dt = 0.0017011708017333317
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 200.80 us (91.3%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.3%)
Info: cfl dt = 0.0016982561471839581 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8962e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.09905098039845 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10446280654756859, dt = 0.0016982561471839581
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.82 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 192.51 us (90.8%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.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 | 5.8084e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.18560675767812 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10616106269475255, 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.35 us (2.5%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 192.44 us (90.9%)
LB move op cnt : 0
LB apply : 2.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (54.8%)
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 | 5.9055e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.095307373771575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10785945157607323, 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.19 us (2.2%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 221.66 us (92.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (54.5%)
Info: cfl dt = 0.001700226247756921 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8852e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.97514920717661 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10955998264143667, dt = 0.001700226247756921
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.40 us (6.4%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 225.52 us (88.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.8%)
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 | 5.9075e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.173941929625954 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1112602088891936, 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.31 us (2.1%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 231.61 us (92.4%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.5%)
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 | 4.6996e+05 | 65536 | 2 | 1.394e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.77129225912993 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11295572859596856, 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.60 us (2.4%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 215.45 us (91.7%)
LB move op cnt : 0
LB apply : 3.48 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (62.0%)
Info: cfl dt = 0.0016949635929667166 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3982e+05 | 65536 | 2 | 1.214e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.23538607873454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11464982665150458, dt = 0.0016949635929667166
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 201.70 us (91.4%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.9%)
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 | 5.6411e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.52289020891338 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1163447902444713, 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.84 us (2.2%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 245.11 us (92.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (61.0%)
Info: cfl dt = 0.0016952309878496704 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6711e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.87687298628672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11804214797268904, dt = 0.0016952309878496704
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.66 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 196.42 us (91.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.9%)
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 | 5.6056e+05 | 65536 | 2 | 1.169e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.20063621748637 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11973737896053871, 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.79 us (2.2%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 237.49 us (92.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (61.7%)
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 | 5.6358e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.388631004396764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1214295930803362, 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.41 us (2.5%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 198.70 us (91.2%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (59.5%)
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 | 5.8194e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.07946102627039 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12312133179191072, 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.68 us (2.6%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 195.60 us (90.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (52.5%)
Info: cfl dt = 0.001695366669055817 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9462e+05 | 65536 | 2 | 1.102e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.297897616180286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12481430254878931, dt = 0.001695366669055817
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 207.02 us (91.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (63.2%)
Info: cfl dt = 0.0016922734783240872 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9231e+05 | 65536 | 2 | 1.106e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.161055814927536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12650966921784512, dt = 0.0016922734783240872
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 218.35 us (91.7%)
LB move op cnt : 0
LB apply : 3.43 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.0%)
Info: cfl dt = 0.001690465834770703 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8601e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.47494810811842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12820194269616922, dt = 0.001690465834770703
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 199.80 us (91.3%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (56.1%)
Info: cfl dt = 0.001690579958585171 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8889e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.684674363512045 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12989240853093992, dt = 0.001690579958585171
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 194.14 us (90.6%)
LB move op cnt : 0
LB apply : 3.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (54.2%)
Info: cfl dt = 0.0016919808502272175 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8920e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.7167263624782 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1315829884895251, dt = 0.0016919808502272175
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 196.78 us (90.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.1%)
Info: cfl dt = 0.0016939142473621318 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9313e+05 | 65536 | 2 | 1.329e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.83293637003838 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1332749693397523, dt = 0.0016939142473621318
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.2%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 205.74 us (91.7%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (61.5%)
Info: cfl dt = 0.001690794332139354 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.265246649593436 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13496888358711442, dt = 0.001690794332139354
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 228.06 us (92.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (59.1%)
Info: cfl dt = 0.0016897843154393283 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.785378818399764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1366596779192538, dt = 0.0016897843154393283
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 205.64 us (91.3%)
LB move op cnt : 0
LB apply : 3.43 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (58.4%)
Info: cfl dt = 0.0016902230544775544 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.844262769836924 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13834946223469313, dt = 0.0016902230544775544
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 219.26 us (91.7%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.1%)
Info: cfl dt = 0.0016916145789440471 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.206768721823344 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14003968528917068, dt = 0.0016916145789440471
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 209.94 us (91.8%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (56.2%)
Info: cfl dt = 0.0016925101169647891 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.6497843789309 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14173129986811472, dt = 0.0016925101169647891
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 209.85 us (91.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.4%)
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.1940e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.992474158765695 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1434238099850795, 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.61 us (2.4%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 213.67 us (91.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.5%)
Info: cfl dt = 0.0016899078404215373 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.9896671621793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14511422764640514, dt = 0.0016899078404215373
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.56 us (0.7%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 215.12 us (91.8%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.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.2881e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.8057391367216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14680413548682666, 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.53 us (2.4%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 213.01 us (91.8%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.0%)
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.3843e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.71264536345919 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1484946181387837, 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.52 us (2.4%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 213.70 us (91.9%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.9%)
Info: cfl dt = 0.0016923174520660407 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.70541843962753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15018637147548322, dt = 0.0016923174520660407
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 236.12 us (92.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (60.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 | 4.3440e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.382941226485045 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15187868892754927, 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.60 us (2.3%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 221.80 us (91.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (59.3%)
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 | 4.3212e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.1361442320189 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15356956054425597, 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.36 us (2.1%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 236.79 us (92.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (62.5%)
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 | 5.5673e+05 | 65536 | 2 | 1.177e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.70294478784464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15526019378585237, 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 : 5.67 us (2.7%)
patch tree reduce : 1.83 us (0.9%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 193.71 us (90.8%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (59.8%)
Info: cfl dt = 0.001692264663793187 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8057e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.93501325308758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15695138114011645, dt = 0.001692264663793187
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 201.66 us (91.5%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (60.5%)
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 | 5.8214e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.11461931205036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15864364580390963, 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 : 5.20 us (2.2%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 216.57 us (91.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (57.7%)
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 | 5.7747e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.69389496805825 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1603363295108846, 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.30 us (2.5%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 193.19 us (90.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.5%)
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 | 4.8864e+05 | 65536 | 2 | 1.341e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.4070343077875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1620279906594982, 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.52 us (2.4%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 211.36 us (91.7%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.7%)
Info: cfl dt = 0.001692025277717015 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5998e+05 | 65536 | 2 | 1.170e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.03314545591456 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16371955137591226, dt = 0.001692025277717015
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.69 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 : 356.39 us (94.8%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (61.8%)
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 | 5.7064e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.038230559376174 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16541157665362927, 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.21 us (2.4%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 198.37 us (91.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.9%)
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 | 5.3837e+05 | 65536 | 2 | 1.217e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.06455310636388 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1671044727751017, 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.28 us (2.3%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 205.29 us (91.3%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (61.5%)
Info: cfl dt = 0.0016925288880980552 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7358e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.351165045826065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16879775399940264, dt = 0.0016925288880980552
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 203.99 us (91.4%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (56.4%)
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 | 5.6461e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.494059774791815 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1704902828875007, 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.38 us (2.5%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 199.34 us (91.0%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (53.8%)
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 | 5.8188e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.09688525542538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17218274048816806, 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.38 us (2.5%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 194.89 us (91.0%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.2%)
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 | 5.8283e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.19703842705287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1738755537448663, 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.36 us (2.5%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 194.28 us (90.8%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (57.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 | 5.7026e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.04905055791057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1755690329714686, 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 : 5.32 us (2.5%)
patch tree reduce : 1.64 us (0.8%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 189.81 us (90.7%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.8%)
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 | 5.8326e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.27732158108535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1772631198765337, 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.39 us (2.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 203.81 us (91.2%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (60.0%)
Info: cfl dt = 0.0016933866938807457 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6751e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.793318039711096 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1789566077426607, dt = 0.0016933866938807457
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 209.37 us (91.6%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (55.9%)
Info: cfl dt = 0.0016936225037281003 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6944e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.9695988236348 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18064999443654145, dt = 0.0016936225037281003
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 235.58 us (92.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (66.2%)
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 | 5.6185e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.27056297144759 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18234361694026954, 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.53 us (2.3%)
patch tree reduce : 1.50 us (0.6%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 221.17 us (91.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (60.4%)
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 | 5.7618e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.61940867386934 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18403772342333427, 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.78 us (2.8%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 183.20 us (90.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (63.2%)
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 | 5.6453e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.555903791540615 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1857325094634678, 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.72 us (2.6%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 200.21 us (90.9%)
LB move op cnt : 0
LB apply : 3.44 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (60.2%)
Info: cfl dt = 0.0016943707499528628 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7712e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.71951096445129 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1874270285850136, dt = 0.0016943707499528628
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 191.02 us (90.9%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.7%)
Info: cfl dt = 0.0016944904043659141 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6815e+05 | 65536 | 2 | 1.154e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.880134738811236 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18912139933496644, dt = 0.0016944904043659141
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.84 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 191.93 us (90.9%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (56.0%)
Info: cfl dt = 0.0016948090796908013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7800e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.80086737978714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19081588973933236, dt = 0.0016948090796908013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 208.95 us (91.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (64.4%)
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 | 5.6945e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.01515691683859 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19251069881902316, 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.30 us (2.7%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 179.85 us (90.5%)
LB move op cnt : 0
LB apply : 2.90 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (57.2%)
Info: cfl dt = 0.001695508922754114 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6382e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.50557685351526 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1942059815576291, dt = 0.001695508922754114
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 1.81 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 183.54 us (90.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.1%)
Info: cfl dt = 0.0016953096959158637 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6619e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.733483157174206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19590149048038322, dt = 0.0016953096959158637
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 185.14 us (90.5%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.2%)
Info: cfl dt = 0.0016953201859836158 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6672e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.77640797072114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19759680017629908, dt = 0.0016953201859836158
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 195.30 us (90.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.9%)
Info: cfl dt = 0.0016954901168427094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6603e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.71253008063802 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1992921203622827, dt = 0.000707879637717318
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 193.42 us (90.9%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.0%)
Info: cfl dt = 0.0016956027517957158 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6760e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.07099650744992 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 37.594640329 (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.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.46 us (55.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 : 771.00 ns (0.3%)
patch tree reduce : 1.06 us (0.4%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.3%)
LB compute : 236.15 us (96.1%)
LB move op cnt : 0
LB apply : 2.82 us (1.1%)
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 : 37.732789889 (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.84 us (2.6%)
patch tree reduce : 1.33 us (0.5%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 238.38 us (91.9%)
LB move op cnt : 0
LB apply : 3.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (62.6%)
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.3668e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.5% 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.49 us (2.1%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 246.21 us (92.7%)
LB move op cnt : 0
LB apply : 3.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (57.2%)
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.2792e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.99638160158897 (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.08 us (2.3%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 204.28 us (91.4%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (55.0%)
Info: cfl dt = 0.0021493776875269525 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8806e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.67144833889799 (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.27 us (2.2%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.43 us (0.6%)
LB compute : 224.33 us (92.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (58.3%)
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 | 4.7656e+05 | 65536 | 2 | 1.375e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.282062233492996 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 38.368327011000005 (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 : 7.36 us (2.8%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 238.54 us (91.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (59.0%)
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.9051e+05 | 65536 | 2 | 1.336e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.571691267206205 (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 : 4.98 us (2.2%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.29 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 210.68 us (91.8%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.4%)
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 | 5.5826e+05 | 65536 | 2 | 1.174e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.63203315232536 (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.58 us (2.4%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 211.09 us (91.6%)
LB move op cnt : 0
LB apply : 3.49 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (61.0%)
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 | 5.6676e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.557385625952715 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 38.792009809 (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 : 8.41 us (3.2%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 239.89 us (91.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (57.7%)
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.2459e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.40140191463268 (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.09 us (2.4%)
patch tree reduce : 1.66 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 195.48 us (91.3%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (56.8%)
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.3739e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.5039983993315 (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.31 us (2.3%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 212.57 us (91.2%)
LB move op cnt : 0
LB apply : 4.23 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (58.6%)
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.4083e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.02353250437341 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 39.313603307 (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.63 us (2.7%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 263.47 us (92.0%)
LB move op cnt : 0
LB apply : 3.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (65.1%)
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 | 5.5913e+05 | 65536 | 2 | 1.172e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.35597701135795 (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.50 us (2.5%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 196.72 us (91.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.9%)
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 | 5.8564e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.87282035288854 (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 : 5.21 us (2.1%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.6%)
LB compute : 224.38 us (92.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.5%)
Info: cfl dt = 0.0018637304114470378 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6565e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.51737221416773 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 39.730765508000005 (s) [Godunov][rank=0]
amr::Godunov: t = 0.02, dt = 0.0018637304114470378
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.6%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 249.24 us (91.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (60.5%)
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 | 5.6885e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.23807349022803 (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.35 us (2.2%)
patch tree reduce : 1.59 us (0.6%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 228.07 us (92.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (65.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.7580e+05 | 65536 | 2 | 1.377e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.56923419266507 (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.29 us (2.4%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 204.06 us (91.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (60.5%)
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 | 5.3745e+05 | 65536 | 2 | 1.219e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.72936342078298 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 40.163486335 (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.94 us (2.9%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 217.01 us (91.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (59.9%)
Info: cfl dt = 0.001843410298582767 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6705e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.99552533256821 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02686187426525201, dt = 0.001843410298582767
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 229.23 us (92.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.7%)
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.4573e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.13548861685384 (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.20 us (2.3%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 211.17 us (91.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.8%)
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.3382e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.853325099965566 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 40.635448457 (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.14 us (2.6%)
patch tree reduce : 1.48 us (0.5%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 255.85 us (92.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (62.8%)
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 | 4.7345e+05 | 65536 | 2 | 1.384e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.70068437982019 (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.92 us (2.5%)
patch tree reduce : 1.60 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 217.17 us (91.9%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.0%)
Info: cfl dt = 0.001822446185775284 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9443e+05 | 65536 | 2 | 1.103e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.947595578586494 (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 (2.6%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 196.19 us (91.0%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 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 | 5.7518e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.0219928501252 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 41.055695874 (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 : 7.58 us (3.0%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 231.08 us (91.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (60.3%)
Info: cfl dt = 0.0018130077286621187 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7662e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.52270556341952 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03681604973680595, dt = 0.0018130077286621187
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 263.03 us (92.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (60.7%)
Info: cfl dt = 0.0018146032494795914 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9617e+05 | 65536 | 2 | 1.099e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.37309025750695 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.038629057465468075, dt = 0.0013709425345319257
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 224.32 us (91.9%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (60.3%)
Info: cfl dt = 0.0018058327888951632 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9568e+05 | 65536 | 2 | 1.322e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.328445582146 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 41.467857552000005 (s) [Godunov][rank=0]
amr::Godunov: t = 0.04, dt = 0.0018058327888951632
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.1%)
patch tree reduce : 1.58 us (0.7%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 218.96 us (91.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (52.1%)
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 | 5.6244e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.792218285301196 (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 : 16.44 us (7.1%)
patch tree reduce : 2.37 us (1.0%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 198.84 us (86.5%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (62.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 | 5.8448e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.55860898266191 (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.29 us (2.3%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 210.87 us (91.2%)
LB move op cnt : 0
LB apply : 3.54 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (64.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 | 5.8436e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.98555036680393 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 41.867220877 (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 : 7.03 us (2.4%)
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.08 us (0.4%)
LB compute : 270.10 us (92.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (61.6%)
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.4373e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.59602475306407 (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.10 us (2.1%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 219.56 us (92.0%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.1%)
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 | 5.5421e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.46961410056635 (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.60 us (2.6%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 197.63 us (91.0%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (13.4%)
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.6194e+05 | 65536 | 2 | 1.419e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.08887082401058 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 42.345119929 (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 : 7.60 us (2.7%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 260.06 us (92.0%)
LB move op cnt : 0
LB apply : 3.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (60.1%)
Info: cfl dt = 0.0017643626507453211 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8975e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.21567691486333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05176613388055261, dt = 0.0017643626507453211
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 208.06 us (91.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (60.5%)
Info: cfl dt = 0.001767402811365105 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9294e+05 | 65536 | 2 | 1.105e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.46690725007554 (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.29 us (2.4%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 200.29 us (91.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.9%)
Info: cfl dt = 0.00176130580984279 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8106e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.9047274185169 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 42.738060951 (s) [Godunov][rank=0]
amr::Godunov: t = 0.055, dt = 0.00176130580984279
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.0%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 218.73 us (91.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (60.1%)
Info: cfl dt = 0.0017490918756096214 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9100e+05 | 65536 | 2 | 1.335e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.50523148174348 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05676130580984279, dt = 0.0017490918756096214
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 195.23 us (90.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.1%)
Info: cfl dt = 0.0017446500442971477 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1457e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.83180122277053 (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 : 10.39 us (4.6%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.61 us (0.7%)
split / merge op : 0/0
apply split merge : 2.00 us (0.9%)
LB compute : 197.71 us (88.3%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (54.7%)
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 | 5.5852e+05 | 65536 | 2 | 1.173e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.7015940689412 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 43.230507719 (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 : 7.94 us (3.0%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 238.38 us (91.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (60.3%)
Info: cfl dt = 0.0017491642670394985 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7523e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.144484445284704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06174516526542148, dt = 0.0017491642670394985
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 189.80 us (90.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (57.4%)
Info: cfl dt = 0.0017383925660327314 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6946e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.7163129185322 (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.58 us (2.6%)
patch tree reduce : 1.68 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 194.66 us (90.8%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.2%)
Info: cfl dt = 0.0017317807770450095 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7924e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 1.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.90864313208813 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 43.629204609000006 (s) [Godunov][rank=0]
amr::Godunov: t = 0.065, dt = 0.0017317807770450095
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 236.04 us (91.7%)
LB move op cnt : 0
LB apply : 3.72 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (60.7%)
Info: cfl dt = 0.0017294245073003545 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7773e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.959077071359715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06673178077704502, dt = 0.0017294245073003545
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 204.51 us (91.2%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.8%)
Info: cfl dt = 0.0017310989114589035 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7392e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.522109655869016 (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.43 us (2.6%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 186.76 us (90.9%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.3%)
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 | 5.5493e+05 | 65536 | 2 | 1.181e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.90705999077088 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 44.032028238 (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.81 us (2.8%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 219.60 us (91.4%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.6%)
Info: cfl dt = 0.001723631980928763 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4965e+05 | 65536 | 2 | 1.192e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.3866765095209 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07173504736627694, dt = 0.001723631980928763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 217.26 us (91.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (62.0%)
Info: cfl dt = 0.0017185331350307246 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6431e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.43017281781048 (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.95 us (2.5%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 216.70 us (91.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (59.6%)
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 | 4.5097e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.18277185229367 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 44.469073982000005 (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 : 7.42 us (2.5%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 272.03 us (92.5%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (63.9%)
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 | 5.1928e+05 | 65536 | 2 | 1.262e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.999708968310635 (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 : 6.14 us (2.9%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 193.99 us (90.7%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.7%)
Info: cfl dt = 0.001721122982589184 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.80540734708681 (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.18 us (2.2%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 217.83 us (92.0%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.1%)
Info: cfl dt = 0.0017134759725273394 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5097e+05 | 65536 | 2 | 1.189e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.289301176771694 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 44.935614489 (s) [Godunov][rank=0]
amr::Godunov: t = 0.08, dt = 0.0017134759725273394
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.0%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 231.09 us (91.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (65.1%)
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.2265e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.78177014706802 (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.47 us (2.4%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 208.98 us (91.6%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (59.7%)
Info: cfl dt = 0.0017097154577639146 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5369e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.61291827100745 (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.62 us (2.3%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 224.61 us (92.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (64.6%)
Info: cfl dt = 0.0017117057842593285 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9146e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.225461376471955 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 45.406188271000005 (s) [Godunov][rank=0]
amr::Godunov: t = 0.085, dt = 0.0017117057842593285
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.0%)
patch tree reduce : 1.49 us (0.6%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 220.49 us (91.1%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (53.5%)
Info: cfl dt = 0.0017119428114212656 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8199e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.72240667350858 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08671170578425934, dt = 0.0017119428114212656
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 221.59 us (91.7%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (61.8%)
Info: cfl dt = 0.0017056819857417037 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8296e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.821920974899925 (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.35 us (2.4%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 204.26 us (91.2%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (61.5%)
Info: cfl dt = 0.0017035433884768636 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7006e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.362749634990045 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 45.802465174000005 (s) [Godunov][rank=0]
amr::Godunov: t = 0.09, dt = 0.0017035433884768636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.9%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 229.59 us (91.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (61.0%)
Info: cfl dt = 0.0017036745996443262 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9348e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.53725650764143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09170354338847686, dt = 0.0017036745996443262
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 191.92 us (90.9%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.7%)
Info: cfl dt = 0.001705660618242847 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8589e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.831260012228654 (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 : 5.41 us (2.1%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 232.68 us (92.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (61.2%)
Info: cfl dt = 0.0017055094354247132 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8822e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.46546298086025 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 46.192784427 (s) [Godunov][rank=0]
amr::Godunov: t = 0.095, dt = 0.0017055094354247132
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.9%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 219.72 us (90.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.5%)
Info: cfl dt = 0.0017007278161867432 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6538e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.96884212129426 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09670550943542472, dt = 0.0017007278161867432
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 256.81 us (92.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.3%)
Info: cfl dt = 0.0016991372917322647 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1872e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.11801090119321 (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.52 us (2.4%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 213.85 us (91.8%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.6%)
Info: cfl dt = 0.0016994818557473491 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2500e+05 | 65536 | 2 | 1.248e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.96299191392475 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 46.646741365000004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.1, dt = 0.0016994818557473491
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.60 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 244.99 us (92.2%)
LB move op cnt : 0
LB apply : 3.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (61.9%)
Info: cfl dt = 0.0017012392646695944 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1988e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.19807200403314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10169948185574736, dt = 0.0017012392646695944
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 210.38 us (91.8%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.9%)
Info: cfl dt = 0.0017011950723311944 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2452e+05 | 65536 | 2 | 1.249e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.01708972317386 (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.36 us (2.4%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 200.65 us (91.3%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (57.7%)
Info: cfl dt = 0.0016978714089208508 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9188e+05 | 65536 | 2 | 1.332e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.21203369796977 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 47.117819552 (s) [Godunov][rank=0]
amr::Godunov: t = 0.105, dt = 0.0016978714089208508
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.7%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 251.54 us (91.8%)
LB move op cnt : 0
LB apply : 3.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.2%)
Info: cfl dt = 0.0016967007699610608 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5422e+05 | 65536 | 2 | 1.182e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.68998425982222 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10669787140892084, dt = 0.0016967007699610608
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 197.29 us (90.9%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (55.0%)
Info: cfl dt = 0.0016970844499853148 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6456e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.61815203319903 (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.32 us (2.3%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 210.81 us (91.4%)
LB move op cnt : 0
LB apply : 3.84 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (60.9%)
Info: cfl dt = 0.0016985391573213706 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6160e+05 | 65536 | 2 | 1.167e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.52674973076383 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 47.546220809000005 (s) [Godunov][rank=0]
amr::Godunov: t = 0.11, dt = 0.0016985391573213706
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.9%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 235.13 us (91.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (60.7%)
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.7318e+05 | 65536 | 2 | 1.385e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.14911099964576 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11169853915732138, 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.46 us (2.5%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 197.65 us (91.1%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (57.5%)
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 | 5.6344e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.58305757728031 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11339748451424048, dt = 0.0016025154857595286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.70 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 194.45 us (91.4%)
LB move op cnt : 0
LB apply : 2.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.2%)
Info: cfl dt = 0.0016953802919238527 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9074e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.00220901098715 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 47.97779344200001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.115, dt = 0.0016953802919238527
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.9%)
patch tree reduce : 2.41 us (1.0%)
gen split merge : 1.62 us (0.6%)
split / merge op : 0/0
apply split merge : 1.66 us (0.7%)
LB compute : 226.47 us (90.6%)
LB move op cnt : 0
LB apply : 3.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.3%)
Info: cfl dt = 0.0016957055428549197 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8693e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.66074113303216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11669538029192386, dt = 0.0016957055428549197
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.53 us (0.7%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 212.53 us (91.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.7%)
Info: cfl dt = 0.001696948190176709 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9075e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.027293875436115 (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.41 us (2.5%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 196.73 us (91.0%)
LB move op cnt : 0
LB apply : 2.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (56.8%)
Info: cfl dt = 0.001697522159552265 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9727e+05 | 65536 | 2 | 1.097e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.7866458700669 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 48.368541629000006 (s) [Godunov][rank=0]
amr::Godunov: t = 0.12, dt = 0.001697522159552265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.6%)
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.26 us (0.5%)
LB compute : 255.52 us (92.0%)
LB move op cnt : 0
LB apply : 3.59 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.1%)
Info: cfl dt = 0.001695296098091843 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8882e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.90595287752632 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12169752215955226, dt = 0.001695296098091843
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 17.82 us (7.8%)
patch tree reduce : 1.55 us (0.7%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 196.48 us (86.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.8%)
Info: cfl dt = 0.0016945680772727308 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8844e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.798951778499784 (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.70 us (2.3%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 224.56 us (92.0%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (61.8%)
Info: cfl dt = 0.0016948007453538748 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9172e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.24012699240347 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 48.760028726 (s) [Godunov][rank=0]
amr::Godunov: t = 0.125, dt = 0.0016948007453538748
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 235.97 us (91.7%)
LB move op cnt : 0
LB apply : 3.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.2%)
Info: cfl dt = 0.0016957359742253684 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8609e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.56403063995436 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12669480074535389, dt = 0.0016957359742253684
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.36 us (0.6%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 213.92 us (91.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (54.5%)
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 | 6.0057e+05 | 65536 | 2 | 1.091e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.942400516273324 (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.69 us (2.7%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 981.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 194.94 us (91.0%)
LB move op cnt : 0
LB apply : 2.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (54.5%)
Info: cfl dt = 0.0016951992650365722 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8464e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.68841394668662 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 49.151188621 (s) [Godunov][rank=0]
amr::Godunov: t = 0.13, dt = 0.0016951992650365722
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 211.06 us (90.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (56.3%)
Info: cfl dt = 0.0016945370196177422 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3829e+05 | 65536 | 2 | 1.217e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.12532695811432 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1316951992650366, dt = 0.0016945370196177422
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 224.32 us (92.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (56.1%)
Info: cfl dt = 0.001694646559752705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5441e+05 | 65536 | 2 | 1.182e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.60662415052203 (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.42 us (2.5%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 193.53 us (90.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.6%)
Info: cfl dt = 0.0016953036984696881 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3919e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.8480718672715 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 49.597494259 (s) [Godunov][rank=0]
amr::Godunov: t = 0.135, dt = 0.0016953036984696881
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.7%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 245.98 us (91.7%)
LB move op cnt : 0
LB apply : 3.76 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (62.1%)
Info: cfl dt = 0.0016964228390942855 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7353e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.410374084906266 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1366953036984697, dt = 0.0016964228390942855
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 210.98 us (91.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.0%)
Info: cfl dt = 0.0016957146377222663 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5443e+05 | 65536 | 2 | 1.182e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.66596056303237 (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.58 us (2.4%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 210.00 us (91.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (64.1%)
Info: cfl dt = 0.0016951690780678734 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5441e+05 | 65536 | 2 | 1.182e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.979339286834595 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 50.006744884 (s) [Godunov][rank=0]
amr::Godunov: t = 0.14, dt = 0.0016951690780678734
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 244.98 us (87.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (61.4%)
Info: cfl dt = 0.0016951763283478047 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3541e+05 | 65536 | 2 | 1.224e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.85660858344636 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1416951690780679, dt = 0.0016951763283478047
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 193.87 us (91.1%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (53.6%)
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 | 5.4970e+05 | 65536 | 2 | 1.192e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.18723222645842 (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.71 us (2.1%)
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.05 us (0.4%)
LB compute : 250.41 us (92.7%)
LB move op cnt : 0
LB apply : 3.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (59.2%)
Info: cfl dt = 0.001696403517293484 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4148e+05 | 65536 | 2 | 1.210e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.877879663790885 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 50.427767747000004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.145, dt = 0.001696403517293484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 236.37 us (91.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (3.5%)
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 | 5.3445e+05 | 65536 | 2 | 1.226e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.8029957614203 (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.83 us (2.5%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 215.50 us (91.7%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.8%)
Info: cfl dt = 0.0016957094211130326 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3273e+05 | 65536 | 2 | 1.230e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.639767430336 (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 : 8.83 us (3.7%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 217.13 us (90.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (60.1%)
Info: cfl dt = 0.0016955909768465104 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4267e+05 | 65536 | 2 | 1.208e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.91366176974148 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 50.85319114 (s) [Godunov][rank=0]
amr::Godunov: t = 0.15, dt = 0.0016955909768465104
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
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.18 us (0.4%)
LB compute : 282.57 us (93.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (62.9%)
Info: cfl dt = 0.0016958011293639868 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2869e+05 | 65536 | 2 | 1.240e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.243061989084154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1516955909768465, dt = 0.0016958011293639868
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 223.92 us (92.3%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (59.4%)
Info: cfl dt = 0.0016963058405482377 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6495e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.626629581216584 (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.34 us (2.2%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 227.48 us (92.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.9%)
Info: cfl dt = 0.0016970209331591075 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5777e+05 | 65536 | 2 | 1.175e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.286392442754455 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 51.269007480000006 (s) [Godunov][rank=0]
amr::Godunov: t = 0.155, dt = 0.0016970209331591075
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 218.29 us (90.8%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (60.6%)
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 | 5.5660e+05 | 65536 | 2 | 1.177e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.886691023855754 (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 : 6.05 us (2.9%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 188.79 us (90.3%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (53.2%)
Info: cfl dt = 0.0016961901507363487 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5543e+05 | 65536 | 2 | 1.180e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.759245737456745 (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.45 us (2.3%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 214.49 us (91.8%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.6%)
Info: cfl dt = 0.0016962301890475686 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6305e+05 | 65536 | 2 | 1.164e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.68939840050607 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 51.677392846000004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.16, dt = 0.0016962301890475686
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.8%)
patch tree reduce : 1.73 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 : 251.25 us (92.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (63.6%)
Info: cfl dt = 0.0016964920557647892 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8779e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.767893714149515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16169623018904758, dt = 0.0016964920557647892
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 187.59 us (90.9%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.6%)
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 | 5.8135e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.1766191847714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16339272224481236, dt = 0.0016072777551876527
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 213.74 us (91.9%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (55.5%)
Info: cfl dt = 0.0016975473218523943 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8421e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.58022007265704 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 52.071495993000006 (s) [Godunov][rank=0]
amr::Godunov: t = 0.165, dt = 0.0016975473218523943
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.6%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 249.27 us (92.3%)
LB move op cnt : 0
LB apply : 3.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (59.1%)
Info: cfl dt = 0.0016972364437000417 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.0977e+05 | 65536 | 2 | 1.286e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.535368475943756 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1666975473218524, dt = 0.0016972364437000417
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 242.80 us (92.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (61.2%)
Info: cfl dt = 0.0016971467705376077 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7991e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.06578984594883 (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.22 us (2.2%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 222.97 us (92.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (60.7%)
Info: cfl dt = 0.0016972325256441442 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.0502e+05 | 65536 | 2 | 1.298e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.531515535400025 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 52.500341168000006 (s) [Godunov][rank=0]
amr::Godunov: t = 0.17, dt = 0.0016972325256441442
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.99 us (2.9%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 248.49 us (91.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (60.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 | 4.4834e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.79927057444867 (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.30 us (2.5%)
patch tree reduce : 1.69 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 196.32 us (91.2%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (58.8%)
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.7543e+05 | 65536 | 2 | 1.378e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.3314843118043 (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.84 us (2.5%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 211.77 us (91.5%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.3%)
Info: cfl dt = 0.0016980068029526687 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5861e+05 | 65536 | 2 | 1.173e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.25944785324948 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 52.980554033000004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.17500000000000002, dt = 0.0016980068029526687
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 222.36 us (91.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.4%)
Info: cfl dt = 0.0016978120240687168 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5252e+05 | 65536 | 2 | 1.186e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.53568301565705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1766980068029527, dt = 0.0016978120240687168
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 872.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 216.15 us (91.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (59.4%)
Info: cfl dt = 0.0016977632304538413 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4349e+05 | 65536 | 2 | 1.206e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.687507071476816 (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.25 us (2.0%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 240.40 us (92.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.9%)
Info: cfl dt = 0.001697821807818174 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8320e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.39175327172213 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 53.390735312000004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.18, dt = 0.001697821807818174
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.28 us (3.4%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 223.31 us (90.7%)
LB move op cnt : 0
LB apply : 2.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.1%)
Info: cfl dt = 0.0016979854885523099 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8346e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.41545779979176 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18169782180781816, dt = 0.0016979854885523099
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 214.89 us (89.9%)
LB move op cnt : 0
LB apply : 5.93 us (2.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (60.4%)
Info: cfl dt = 0.0016982525146471267 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3745e+05 | 65536 | 2 | 1.219e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.12994433262158 (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 : 5.82 us (2.6%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 202.62 us (90.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.1%)
Info: cfl dt = 0.0016985556438602143 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4552e+05 | 65536 | 2 | 1.201e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.07181568859359 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 53.819739265 (s) [Godunov][rank=0]
amr::Godunov: t = 0.185, dt = 0.0016985556438602143
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.9%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 221.30 us (91.3%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (62.5%)
Info: cfl dt = 0.0016984122661449946 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6354e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.58123221152165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1866985556438602, dt = 0.0016984122661449946
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 197.70 us (91.0%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.0%)
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 | 5.6569e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.77698854603521 (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.13 us (2.3%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 200.66 us (91.3%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (61.8%)
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 | 5.7082e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.26446738313313 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 54.225215690000006 (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 : 7.44 us (2.7%)
patch tree reduce : 1.34 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 257.98 us (92.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (59.2%)
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 | 5.6641e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.84332010574235 (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.32 us (2.4%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 199.18 us (90.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.4%)
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 | 5.6857e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.04830486489045 (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.51 us (2.6%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 193.85 us (90.8%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.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 | 5.8017e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.090856303627284 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 54.626441187000005 (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.81 us (2.8%)
patch tree reduce : 1.60 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 218.52 us (91.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (60.8%)
Info: cfl dt = 0.001699234840073137 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6792e+05 | 65536 | 2 | 1.154e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.00233279556718 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19669895572376309, dt = 0.001699234840073137
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 211.64 us (91.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (61.8%)
Info: cfl dt = 0.0016991776895348516 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6600e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.83142058010453 (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.53 us (2.4%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 208.55 us (91.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (54.4%)
Info: cfl dt = 0.0016991765035373864 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5400e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.74635746390906 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 55.03390180900001 (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.93 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.32 us (54.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 : 811.00 ns (0.4%)
patch tree reduce : 1.03 us (0.4%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.3%)
LB compute : 221.59 us (96.2%)
LB move op cnt : 0
LB apply : 2.47 us (1.1%)
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 : 9.11 us (3.3%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 253.34 us (91.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (58.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 | 5.4309e+05 | 65536 | 2 | 1.207e-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.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.67 us (2.4%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 220.96 us (91.7%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (61.3%)
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 | 5.5343e+05 | 65536 | 2 | 1.184e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.71357877346156 (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.25 us (2.4%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 201.69 us (91.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (55.8%)
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 | 5.5452e+05 | 65536 | 2 | 1.182e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.58187781992487 (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.67 us (2.6%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 202.49 us (91.2%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (58.5%)
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 | 5.6041e+05 | 65536 | 2 | 1.169e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.87839728032996 (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.64 us (2.1%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 242.36 us (91.9%)
LB move op cnt : 0
LB apply : 3.83 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (64.0%)
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 | 5.5984e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.41770799333763 (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.54 us (2.6%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 194.36 us (90.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.1%)
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 | 5.7452e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.01084674399429 (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.21 us (2.4%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 194.13 us (91.0%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (50.0%)
Info: cfl dt = 0.0019534081690550176 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6749e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.901155484785036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0127325622571938, dt = 0.0019534081690550176
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 225.76 us (92.0%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.7%)
Info: cfl dt = 0.0019206023649325434 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7106e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.27717023491194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014685970426248817, dt = 0.0019206023649325434
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 235.05 us (91.9%)
LB move op cnt : 0
LB apply : 3.66 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (61.6%)
Info: cfl dt = 0.0018848741424326906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5987e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.06749321573028 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01660657279118136, dt = 0.0018848741424326906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 196.30 us (90.9%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (55.2%)
Info: cfl dt = 0.0018689737388701405 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7318e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.34638555380063 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01849144693361405, dt = 0.0018689737388701405
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.27 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 231.80 us (92.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (58.8%)
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 | 5.7518e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.051043833689555 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02036042067248419, 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 (2.6%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 191.58 us (90.9%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.9%)
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 | 5.5983e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.21880034237551 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022221060906782553, 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.69 us (2.6%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 196.70 us (90.8%)
LB move op cnt : 0
LB apply : 3.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (63.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 | 5.7073e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.29846518247714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024080588330423095, 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.47 us (2.6%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 192.25 us (90.8%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (52.6%)
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 | 5.5797e+05 | 65536 | 2 | 1.175e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.114203647039915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025944022531819814, 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.29 us (2.5%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 193.06 us (90.9%)
LB move op cnt : 0
LB apply : 2.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.3%)
Info: cfl dt = 0.0018380986030018338 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7179e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.01367429291117 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027791047471113495, dt = 0.0018380986030018338
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 195.65 us (90.6%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.6%)
Info: cfl dt = 0.001836452265186485 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5237e+05 | 65536 | 2 | 1.186e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.77279139255921 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029629146074115327, dt = 0.001836452265186485
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 209.55 us (91.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (57.4%)
Info: cfl dt = 0.0018308404082809982 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6564e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.06122590014642 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03146559833930181, dt = 0.0018308404082809982
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.27 us (0.9%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 224.35 us (91.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.7%)
Info: cfl dt = 0.001813205807848347 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4025e+05 | 65536 | 2 | 1.213e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.333628605731214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03329643874758281, dt = 0.001813205807848347
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.28 us (1.1%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 195.31 us (90.8%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (54.5%)
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 | 5.4241e+05 | 65536 | 2 | 1.208e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.025481992457955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03510964455543116, 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.52 us (2.5%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 200.59 us (91.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (56.9%)
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 | 5.3080e+05 | 65536 | 2 | 1.235e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.68828621878261 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03691664351242531, 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.88 us (1.8%)
patch tree reduce : 2.29 us (0.7%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 301.13 us (93.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (56.4%)
Info: cfl dt = 0.0018048658370763172 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4418e+05 | 65536 | 2 | 1.204e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.04271196298706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.038724523246943435, dt = 0.0018048658370763172
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 214.91 us (91.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (53.4%)
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 | 5.4062e+05 | 65536 | 2 | 1.212e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.59942932471785 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04052938908401975, 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.30 us (2.3%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 216.38 us (91.9%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.6%)
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 | 5.3129e+05 | 65536 | 2 | 1.234e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.15103225772594 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04231633119554546, 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.57 us (2.2%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 238.38 us (92.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (60.4%)
Info: cfl dt = 0.0017803510725192943 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3531e+05 | 65536 | 2 | 1.224e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.34745000108277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.044096513675973406, dt = 0.0017803510725192943
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.31 us (1.1%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 191.16 us (90.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.5%)
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 | 5.4294e+05 | 65536 | 2 | 1.207e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.09779677215022 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0458768647484927, 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.49 us (2.6%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 189.90 us (90.6%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (53.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 | 5.3746e+05 | 65536 | 2 | 1.219e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.70058966805161 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047661886889588966, 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.75 us (2.4%)
patch tree reduce : 2.37 us (1.0%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 215.62 us (91.6%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.0%)
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 | 5.3020e+05 | 65536 | 2 | 1.236e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.504304808577366 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04943029439148739, 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.45 us (2.7%)
patch tree reduce : 2.32 us (1.2%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 182.01 us (90.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (47.1%)
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 | 5.4119e+05 | 65536 | 2 | 1.211e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.282540009131935 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05118897990388956, 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.69 us (2.3%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 222.97 us (92.0%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (57.3%)
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 | 5.3582e+05 | 65536 | 2 | 1.223e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.7010584343884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05294551063999297, 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 : 6.45 us (3.0%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 193.78 us (90.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (56.4%)
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 | 5.3572e+05 | 65536 | 2 | 1.223e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.778125290518894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.054704996908607355, 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 : 5.42 us (1.9%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 271.18 us (93.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (60.3%)
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 | 5.3348e+05 | 65536 | 2 | 1.228e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.441377924915635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05646039424898774, 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.54 us (2.3%)
patch tree reduce : 2.22 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 223.40 us (91.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.9%)
Info: cfl dt = 0.0017385942621927092 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4291e+05 | 65536 | 2 | 1.207e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.98835613014746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.058203612973469335, dt = 0.0017385942621927092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 206.28 us (91.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (56.7%)
Info: cfl dt = 0.001739119533879697 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5628e+05 | 65536 | 2 | 1.178e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.12659711963925 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05994220723566204, dt = 0.001739119533879697
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 246.60 us (92.7%)
LB move op cnt : 0
LB apply : 3.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.1%)
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 | 5.4866e+05 | 65536 | 2 | 1.194e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.415398780329085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06168132676954174, 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 : 6.25 us (2.6%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 217.16 us (91.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (55.5%)
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 | 5.5213e+05 | 65536 | 2 | 1.187e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.870407595670656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0634245416071768, 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.20 us (2.4%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 198.67 us (91.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (59.3%)
Info: cfl dt = 0.0017263618887941533 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3870e+05 | 65536 | 2 | 1.217e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.29540016787351 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06515797065572776, dt = 0.0017263618887941533
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 230.48 us (92.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.5%)
Info: cfl dt = 0.0017246230917072952 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5023e+05 | 65536 | 2 | 1.191e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.179006290644494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06688433254452192, dt = 0.0017246230917072952
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 202.02 us (91.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.9%)
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 | 5.4895e+05 | 65536 | 2 | 1.194e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.00577795831641 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06860895563622921, 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 : 5.56 us (2.3%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 223.68 us (92.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.5%)
Info: cfl dt = 0.0017290879300486009 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3854e+05 | 65536 | 2 | 1.217e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.07783964480286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07033556692099749, dt = 0.0017290879300486009
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 194.22 us (90.8%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (50.0%)
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 | 5.5008e+05 | 65536 | 2 | 1.191e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.24788701539221 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07206465485104609, 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.71 us (2.7%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 195.33 us (90.9%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (58.5%)
Info: cfl dt = 0.0017151471775685959 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5128e+05 | 65536 | 2 | 1.189e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.05957305193942 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07378378289050153, dt = 0.0017151471775685959
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.68 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 199.66 us (91.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (58.5%)
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 | 5.2618e+05 | 65536 | 2 | 1.246e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.57439640360464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07549893006807012, 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.59 us (2.6%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 197.92 us (91.1%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.9%)
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 | 5.3892e+05 | 65536 | 2 | 1.216e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.76773572124309 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07721385289901467, 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.47 us (2.5%)
patch tree reduce : 1.83 us (0.9%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 196.04 us (91.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.6%)
Info: cfl dt = 0.0017167048819835967 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5499e+05 | 65536 | 2 | 1.181e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.35673304633571 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07893122438089348, dt = 0.0017167048819835967
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 197.52 us (90.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (51.0%)
Info: cfl dt = 0.0017101068125198082 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4355e+05 | 65536 | 2 | 1.206e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.257361323318065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08064792926287707, dt = 0.0017101068125198082
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.83 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 194.82 us (91.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (57.2%)
Info: cfl dt = 0.0017078381017851124 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3787e+05 | 65536 | 2 | 1.218e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.52729751062244 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08235803607539688, dt = 0.0017078381017851124
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 193.93 us (90.9%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (46.1%)
Info: cfl dt = 0.0017083438162299753 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3355e+05 | 65536 | 2 | 1.228e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.0544267011493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08406587417718199, dt = 0.0017083438162299753
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 193.08 us (90.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.9%)
Info: cfl dt = 0.0017108556155540934 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5572e+05 | 65536 | 2 | 1.179e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.149574801499675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08577421799341196, dt = 0.0017108556155540934
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 202.54 us (91.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (58.6%)
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 | 5.6387e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.9927848238379 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08748507360896605, 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.61 us (2.7%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 186.91 us (90.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (58.6%)
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 | 5.5016e+05 | 65536 | 2 | 1.191e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.636224296980835 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08919369068233533, 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.73 us (2.3%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 230.21 us (92.0%)
LB move op cnt : 0
LB apply : 3.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (57.7%)
Info: cfl dt = 0.001702856662298741 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4001e+05 | 65536 | 2 | 1.214e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.55162564849575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09089783931491119, dt = 0.001702856662298741
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 192.36 us (90.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (57.2%)
Info: cfl dt = 0.0017036421913189312 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3100e+05 | 65536 | 2 | 1.234e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.66965766466866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09260069597720993, dt = 0.0017036421913189312
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 193.83 us (90.7%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (60.9%)
Info: cfl dt = 0.0017059625466901052 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5119e+05 | 65536 | 2 | 1.189e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.58225698230573 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09430433816852887, dt = 0.0017059625466901052
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 210.68 us (91.6%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.5%)
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 | 5.4157e+05 | 65536 | 2 | 1.210e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.751488389605676 (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.48 us (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 992.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 197.47 us (91.1%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (55.0%)
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 | 5.3160e+05 | 65536 | 2 | 1.233e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.74435252829192 (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.18 us (2.2%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 219.11 us (91.1%)
LB move op cnt : 0
LB apply : 5.16 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (49.4%)
Info: cfl dt = 0.0016996820181639787 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3810e+05 | 65536 | 2 | 1.218e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.26176760566916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09941416597278792, dt = 0.0016996820181639787
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 195.37 us (90.8%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (59.4%)
Info: cfl dt = 0.0017005469499897714 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4386e+05 | 65536 | 2 | 1.205e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.77828433015056 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1011138479909519, dt = 0.0017005469499897714
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 196.93 us (90.8%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (57.0%)
Info: cfl dt = 0.0017026162574477748 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4453e+05 | 65536 | 2 | 1.204e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.867044206652864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10281439494094166, dt = 0.0017026162574477748
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 212.36 us (91.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (59.8%)
Info: cfl dt = 0.00170027680269093 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6093e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.46256472412189 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10451701119838944, dt = 0.00170027680269093
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 213.26 us (91.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (59.3%)
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 | 5.4936e+05 | 65536 | 2 | 1.193e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.309957458541554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10621728800108036, 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.49 us (2.6%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 193.46 us (90.9%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (53.8%)
Info: cfl dt = 0.0016977362827014562 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6195e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.41903070688782 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1079154145717679, dt = 0.0016977362827014562
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 215.21 us (91.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (55.4%)
Info: cfl dt = 0.0016985555549894052 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5204e+05 | 65536 | 2 | 1.187e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.483120037270595 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10961315085446935, dt = 0.0016985555549894052
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 194.94 us (90.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.5%)
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 | 5.6323e+05 | 65536 | 2 | 1.164e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.552317934354754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11131170640945875, 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.09 us (2.2%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 207.88 us (91.4%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.0%)
Info: cfl dt = 0.0016984610865389367 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7370e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.58476678159384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11301203125797302, dt = 0.0016984610865389367
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 217.13 us (91.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.5%)
Info: cfl dt = 0.0016969265772841691 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6528e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.7403067652372 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11471049234451196, dt = 0.0016969265772841691
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 215.41 us (91.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (54.2%)
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 | 5.5211e+05 | 65536 | 2 | 1.187e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.46457020222923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11640741892179612, 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.60 us (2.6%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 194.13 us (90.8%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (58.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 | 5.5960e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.15622098429691 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11810411630781498, 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.50 us (2.3%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 220.33 us (91.7%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.3%)
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 | 5.4393e+05 | 65536 | 2 | 1.205e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.716830833402376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11980152485442203, 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.31 us (2.2%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 222.55 us (92.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.0%)
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 | 5.5443e+05 | 65536 | 2 | 1.182e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.74025785360613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12150038307853557, 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.41 us (2.0%)
patch tree reduce : 2.19 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 257.35 us (93.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.9%)
Info: cfl dt = 0.0016966110639823066 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8124e+05 | 65536 | 2 | 1.362e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.88031874409462 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12319812953928493, dt = 0.0016966110639823066
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.31 us (0.6%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 209.46 us (91.2%)
LB move op cnt : 0
LB apply : 3.40 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (53.8%)
Info: cfl dt = 0.0016964559446988033 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5300e+05 | 65536 | 2 | 1.185e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.53786311545795 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12489474060326723, dt = 0.0016964559446988033
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.13 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 232.87 us (90.2%)
LB move op cnt : 0
LB apply : 4.58 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (63.0%)
Info: cfl dt = 0.0016970401688125012 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5618e+05 | 65536 | 2 | 1.178e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.82969806898335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12659119654796602, dt = 0.0016970401688125012
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 250.44 us (92.5%)
LB move op cnt : 0
LB apply : 3.53 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (57.9%)
Info: cfl dt = 0.001698187383801647 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6241e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.428078253954304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12828823671677853, dt = 0.001698187383801647
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 207.14 us (91.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (59.7%)
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 | 4.6585e+05 | 65536 | 2 | 1.407e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.45612032569535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12998642410058017, 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.27 us (2.4%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 198.53 us (91.1%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (50.0%)
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 | 4.9792e+05 | 65536 | 2 | 1.316e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.435346003557264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13168415271922154, 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.16 us (2.4%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.33 us (0.6%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 198.75 us (91.1%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (54.0%)
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 | 5.7545e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.63780975874841 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13338100044550194, 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 : 5.18 us (2.4%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 198.02 us (90.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (57.0%)
Info: cfl dt = 0.0016971546656561038 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5609e+05 | 65536 | 2 | 1.179e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.82992857621422 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1350777291602757, dt = 0.0016971546656561038
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.66 us (4.0%)
patch tree reduce : 3.26 us (1.5%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 190.91 us (88.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (54.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 | 5.4567e+05 | 65536 | 2 | 1.201e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.87177456457209 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13677488382593178, 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.84 us (2.3%)
patch tree reduce : 2.50 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 235.19 us (92.0%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (59.0%)
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 | 5.3984e+05 | 65536 | 2 | 1.214e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.353406818609905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13847290202609946, 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.48 us (2.6%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 194.62 us (91.0%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (56.0%)
Info: cfl dt = 0.0016972359111011638 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5628e+05 | 65536 | 2 | 1.178e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.885105155112704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14017085641835456, dt = 0.0016972359111011638
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 196.73 us (91.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.3%)
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 | 5.4264e+05 | 65536 | 2 | 1.208e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.591089851246664 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14186809232945571, 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.93 us (2.6%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 211.29 us (91.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.9%)
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 | 5.6367e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.547398848208616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14356517373431274, 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.75 us (2.6%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 198.30 us (91.1%)
LB move op cnt : 0
LB apply : 2.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (56.7%)
Info: cfl dt = 0.0016979432695619463 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6223e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.421346404236324 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14526251867037998, dt = 0.0016979432695619463
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 211.45 us (91.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.1%)
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 | 4.0667e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.930733704005206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14696046193994192, 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 : 6.84 us (3.0%)
patch tree reduce : 3.29 us (1.5%)
gen split merge : 1.43 us (0.6%)
split / merge op : 0/0
apply split merge : 1.63 us (0.7%)
LB compute : 200.50 us (89.4%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (63.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.5561e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.50684518440583 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14865885881033922, 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.29 us (2.5%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 193.74 us (90.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.2%)
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.6817e+05 | 65536 | 2 | 1.400e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.6619704622469 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15035661469021563, 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.66 us (2.4%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 211.13 us (91.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.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 | 5.0615e+05 | 65536 | 2 | 1.295e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.197851058069745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15205416216557965, 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 : 4.84 us (2.1%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 215.17 us (91.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.5%)
Info: cfl dt = 0.0016980593347007708 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4689e+05 | 65536 | 2 | 1.198e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.00081860958149 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1537518348014381, dt = 0.0016980593347007708
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 218.06 us (91.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.1%)
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 | 5.5464e+05 | 65536 | 2 | 1.182e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.73502542562034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15544989413613886, 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.31 us (2.5%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 196.72 us (90.9%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (55.9%)
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 | 5.5570e+05 | 65536 | 2 | 1.179e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.85265857143007 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15714856229845225, 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.16 us (2.0%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 237.15 us (92.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (61.2%)
Info: cfl dt = 0.0016982345701905398 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5894e+05 | 65536 | 2 | 1.172e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.15003453505456 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1588470538668469, dt = 0.0016982345701905398
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 186.09 us (90.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (53.7%)
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 | 5.6352e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.56864849001183 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16054528843703741, 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.42 us (2.1%)
patch tree reduce : 2.13 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 244.17 us (92.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (59.6%)
Info: cfl dt = 0.0016984266379888346 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7514e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.65253477135997 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16224351575565948, dt = 0.0016984266379888346
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 230.13 us (92.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (62.0%)
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 | 5.6435e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.65279012129992 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16394194239364832, 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.32 us (2.3%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 207.59 us (91.6%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (64.4%)
Info: cfl dt = 0.001699344678672124 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8631e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.7134280713495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16564074489560218, dt = 0.001699344678672124
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 213.28 us (91.4%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (56.2%)
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 | 5.8467e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.57732782707815 (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.45 us (2.4%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 212.13 us (91.7%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (50.7%)
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.9330e+05 | 65536 | 2 | 1.329e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.043309102633884 (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 : 5.59 us (2.4%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 211.16 us (91.6%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (52.9%)
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 | 5.0094e+05 | 65536 | 2 | 1.308e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.75420131964558 (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.16 us (2.3%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 206.82 us (91.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.9%)
Info: cfl dt = 0.0016993174686320582 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6647e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.872193357047166 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17243741908719443, dt = 0.0016993174686320582
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 215.47 us (91.6%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (57.7%)
Info: cfl dt = 0.0016996449187329293 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6042e+05 | 65536 | 2 | 1.169e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.313032519318114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17413673655582648, dt = 0.0016996449187329293
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 193.81 us (86.1%)
LB move op cnt : 0
LB apply : 14.65 us (6.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.1%)
Info: cfl dt = 0.0016997294942707297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7017e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.233901334228435 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1758363814745594, dt = 0.0016997294942707297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 205.31 us (91.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.4%)
Info: cfl dt = 0.0016995643511617995 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7515e+05 | 65536 | 2 | 1.379e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.36378425400837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17753611096883012, dt = 0.0016995643511617995
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.24 us (1.1%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 189.49 us (90.5%)
LB move op cnt : 0
LB apply : 2.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (59.5%)
Info: cfl dt = 0.0016995146248371968 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6531e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.777171329416525 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17923567531999193, dt = 0.0016995146248371968
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.36 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 201.73 us (91.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (55.6%)
Info: cfl dt = 0.0016995686921680046 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4164e+05 | 65536 | 2 | 1.210e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.56606612601262 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18093518994482913, dt = 0.0016995686921680046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 198.55 us (91.2%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (52.2%)
Info: cfl dt = 0.0016997202499088016 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4310e+05 | 65536 | 2 | 1.207e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.70371992746547 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18263475863699713, dt = 0.0016997202499088016
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 1.80 us (0.9%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 190.26 us (90.7%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (50.0%)
Info: cfl dt = 0.001699966871173014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1491e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.739836785577744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18433447888690593, dt = 0.001699966871173014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.17 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 240.15 us (92.2%)
LB move op cnt : 0
LB apply : 3.74 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (62.4%)
Info: cfl dt = 0.0017002080226618506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3289e+05 | 65536 | 2 | 1.230e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.76222694324409 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18603444575807895, dt = 0.0017002080226618506
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 201.90 us (91.0%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (55.1%)
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.0653e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.96761261148295 (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.81 us (2.6%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 207.44 us (91.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.6%)
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 | 5.5951e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.252618924018186 (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.86 us (2.8%)
patch tree reduce : 1.78 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 188.23 us (90.6%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.2%)
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 | 5.6957e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.19047103985985 (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.23 us (2.4%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 196.42 us (91.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 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 | 5.6361e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.63548001761236 (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 : 5.60 us (2.7%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 187.18 us (90.4%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (51.9%)
Info: cfl dt = 0.0017003946272280163 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6482e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.75211436769789 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19453514337590366, dt = 0.0017003946272280163
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 190.51 us (90.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.3%)
Info: cfl dt = 0.0017006626140353418 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6380e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.66182462395652 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19623553800313168, dt = 0.0017006626140353418
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.37 us (1.0%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 216.31 us (91.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (61.7%)
Info: cfl dt = 0.0017006239404694173 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5315e+05 | 65536 | 2 | 1.185e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.67571036400292 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19793620061716702, dt = 0.0017006239404694173
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 202.73 us (91.2%)
LB move op cnt : 0
LB apply : 3.61 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.2%)
Info: cfl dt = 0.0017005773956248838 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6009e+05 | 65536 | 2 | 1.170e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.32226196819257 (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.28 us (2.1%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 230.61 us (92.3%)
LB move op cnt : 0
LB apply : 3.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.3%)
Info: cfl dt = 0.0017005749926095508 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5570e+05 | 65536 | 2 | 1.179e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.086158795516518 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 69.226556527 (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.42183401e-07, 1.42183401e-07, 1.42183401e-07, 1.42183401e-07,
1.05285749e-08, 1.05285749e-08, 1.05285749e-08, 1.05285749e-08,
7.77701488e-10, 7.77701488e-10, 7.77701488e-10, 7.77701488e-10,
5.73010457e-11, 5.73010457e-11, 5.73010457e-11, 5.73010457e-11,
4.21117927e-12, 4.21117927e-12, 4.21117927e-12, 4.21117927e-12,
3.08671287e-13, 3.08671287e-13, 3.08671287e-13, 3.08671287e-13,
2.24554100e-14, 2.24554100e-14, 2.24554100e-14, 2.24554100e-14,
1.59293686e-15, 1.59293686e-15, 1.59293686e-15, 1.59293686e-15,
1.02454422e-16, 1.02454422e-16, 1.02454422e-16, 1.02454422e-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.00397592e-09, 1.00397592e-09, 1.00397592e-09, 1.00397592e-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.01915978e-08, 8.01915978e-08, 8.01915978e-08, 8.01915978e-08,
1.84159268e-09, 1.84159268e-09, 1.84159268e-09, 1.84159268e-09,
3.02840271e-11, 3.02840271e-11, 3.02840271e-11, 3.02840271e-11,
3.31064432e-13, 3.31064432e-13, 3.31064432e-13, 3.31064432e-13,
2.09343286e-15, 2.09343286e-15, 2.09343286e-15, 2.09343286e-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.25358487e-08, 6.25358487e-08, 6.25358487e-08, 6.25358487e-08,
1.91748501e-09, 1.91748501e-09, 1.91748501e-09, 1.91748501e-09,
4.62606718e-11, 4.62606718e-11, 4.62606718e-11, 4.62606718e-11,
8.51280219e-13, 8.51280219e-13, 8.51280219e-13, 8.51280219e-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.51483227e-09, 1.51483227e-09, 1.51483227e-09, 1.51483227e-09,
4.65132240e-11, 4.65132240e-11, 4.65132240e-11, 4.65132240e-11,
1.16292780e-12, 1.16292780e-12, 1.16292780e-12, 1.16292780e-12,
2.31305668e-14, 2.31305668e-14, 2.31305668e-14, 2.31305668e-14,
3.58178583e-16, 3.58178583e-16, 3.58178583e-16, 3.58178583e-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.02173680e-09, 1.02173680e-09, 1.02173680e-09, 1.02173680e-09,
3.71041410e-11, 3.71041410e-11, 3.71041410e-11, 3.71041410e-11,
1.14136465e-12, 1.14136465e-12, 1.14136465e-12, 1.14136465e-12,
2.92663456e-14, 2.92663456e-14, 2.92663456e-14, 2.92663456e-14,
6.09300121e-16, 6.09300121e-16, 6.09300121e-16, 6.09300121e-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.23193622e-10, 6.23193622e-10, 6.23193622e-10, 6.23193622e-10,
2.56186646e-11, 2.56186646e-11, 2.56186646e-11, 2.56186646e-11,
9.16357815e-13, 9.16357815e-13, 9.16357815e-13, 9.16357815e-13,
2.82083808e-14, 2.82083808e-14, 2.82083808e-14, 2.82083808e-14,
7.14716636e-16, 7.14716636e-16, 7.14716636e-16, 7.14716636e-16,
1.99155595e-17, 1.99155595e-17, 1.99155595e-17, 1.99155595e-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]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 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.03125044e-09, 7.03125044e-09, 7.03125044e-09, 7.03125044e-09,
3.55048132e-10, 3.55048132e-10, 3.55048132e-10, 3.55048132e-10,
1.60551512e-11, 1.60551512e-11, 1.60551512e-11, 1.60551512e-11,
6.44443381e-13, 6.44443381e-13, 6.44443381e-13, 6.44443381e-13,
2.27317978e-14, 2.27317978e-14, 2.27317978e-14, 2.27317978e-14,
6.70561366e-16, 6.70561366e-16, 6.70561366e-16, 6.70561366e-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.15180945e-08, 6.15180945e-08, 6.15180945e-08, 6.15180945e-08,
3.59623291e-09, 3.59623291e-09, 3.59623291e-09, 3.59623291e-09,
1.92933376e-10, 1.92933376e-10, 1.92933376e-10, 1.92933376e-10,
9.40775477e-12, 9.40775477e-12, 9.40775477e-12, 9.40775477e-12,
4.13524220e-13, 4.13524220e-13, 4.13524220e-13, 4.13524220e-13,
1.62476308e-14, 1.62476308e-14, 1.62476308e-14, 1.62476308e-14,
5.50769866e-16, 5.50769866e-16, 5.50769866e-16, 5.50769866e-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.96179807e-08, 2.96179807e-08, 2.96179807e-08, 2.96179807e-08,
1.79683459e-09, 1.79683459e-09, 1.79683459e-09, 1.79683459e-09,
1.01205787e-10, 1.01205787e-10, 1.01205787e-10, 1.01205787e-10,
5.24433457e-12, 5.24433457e-12, 5.24433457e-12, 5.24433457e-12,
2.48198967e-13, 2.48198967e-13, 2.48198967e-13, 2.48198967e-13,
1.06051291e-14, 1.06051291e-14, 1.06051291e-14, 1.06051291e-14,
3.76402908e-16, 3.76402908e-16, 3.76402908e-16, 3.76402908e-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.82092688e-10, 8.82092688e-10, 8.82092688e-10, 8.82092688e-10,
5.16972571e-11, 5.16972571e-11, 5.16972571e-11, 5.16972571e-11,
2.81591800e-12, 2.81591800e-12, 2.81591800e-12, 2.81591800e-12,
1.41489325e-13, 1.41489325e-13, 1.41489325e-13, 1.41489325e-13,
6.49453029e-15, 6.49453029e-15, 6.49453029e-15, 6.49453029e-15,
2.36749553e-16, 2.36749553e-16, 2.36749553e-16, 2.36749553e-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.66943139e-09, 6.66943139e-09, 6.66943139e-09, 6.66943139e-09,
4.27344816e-10, 4.27344816e-10, 4.27344816e-10, 4.27344816e-10,
2.58814650e-11, 2.58814650e-11, 2.58814650e-11, 2.58814650e-11,
1.46930810e-12, 1.46930810e-12, 1.46930810e-12, 1.46930810e-12,
7.76492225e-14, 7.76492225e-14, 7.76492225e-14, 7.76492225e-14,
3.73743999e-15, 3.73743999e-15, 3.73743999e-15, 3.73743999e-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.60110800e-08, 4.60110800e-08, 4.60110800e-08, 4.60110800e-08,
3.13257582e-09, 3.13257582e-09, 3.13257582e-09, 3.13257582e-09,
2.04833964e-10, 2.04833964e-10, 2.04833964e-10, 2.04833964e-10,
1.27490295e-11, 1.27490295e-11, 1.27490295e-11, 1.27490295e-11,
7.49470668e-13, 7.49470668e-13, 7.49470668e-13, 7.49470668e-13,
4.12681631e-14, 4.12681631e-14, 4.12681631e-14, 4.12681631e-14,
2.08559499e-15, 2.08559499e-15, 2.08559499e-15, 2.08559499e-15,
5.60541096e-17, 5.60541096e-17, 5.60541096e-17, 5.60541096e-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.12578536e-08, 2.12578536e-08, 2.12578536e-08, 2.12578536e-08,
1.46423022e-09, 1.46423022e-09, 1.46423022e-09, 1.46423022e-09,
9.73780648e-11, 9.73780648e-11, 9.73780648e-11, 9.73780648e-11,
6.20166085e-12, 6.20166085e-12, 6.20166085e-12, 6.20166085e-12,
3.75376076e-13, 3.75376076e-13, 3.75376076e-13, 3.75376076e-13,
2.14217464e-14, 2.14217464e-14, 2.14217464e-14, 2.14217464e-14,
1.09531230e-15, 1.09531230e-15, 1.09531230e-15, 1.09531230e-15,
2.33215395e-17, 2.33215395e-17, 2.33215395e-17, 2.33215395e-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.37703295e-07, 1.37703295e-07, 1.37703295e-07, 1.37703295e-07,
9.80046712e-09, 9.80046712e-09, 9.80046712e-09, 9.80046712e-09,
6.81680669e-10, 6.81680669e-10, 6.81680669e-10, 6.81680669e-10,
4.59859280e-11, 4.59859280e-11, 4.59859280e-11, 4.59859280e-11,
2.98608780e-12, 2.98608780e-12, 2.98608780e-12, 2.98608780e-12,
1.85261212e-13, 1.85261212e-13, 1.85261212e-13, 1.85261212e-13,
1.08397957e-14, 1.08397957e-14, 1.08397957e-14, 1.08397957e-14,
6.03543724e-16, 6.03543724e-16, 6.03543724e-16, 6.03543724e-16,
1.12027689e-17, 1.12027689e-17, 1.12027689e-17, 1.12027689e-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.30649884e-08, 6.30649884e-08, 6.30649884e-08, 6.30649884e-08,
4.51037174e-09, 4.51037174e-09, 4.51037174e-09, 4.51037174e-09,
3.16293220e-10, 3.16293220e-10, 3.16293220e-10, 3.16293220e-10,
2.15961451e-11, 2.15961451e-11, 2.15961451e-11, 2.15961451e-11,
1.42563768e-12, 1.42563768e-12, 1.42563768e-12, 1.42563768e-12,
9.02782921e-14, 9.02782921e-14, 9.02782921e-14, 9.02782921e-14,
5.45488413e-15, 5.45488413e-15, 5.45488413e-15, 5.45488413e-15,
3.24213061e-16, 3.24213061e-16, 3.24213061e-16, 3.24213061e-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.88737198e-08, 2.88737198e-08, 2.88737198e-08, 2.88737198e-08,
2.07323027e-09, 2.07323027e-09, 2.07323027e-09, 2.07323027e-09,
1.46378130e-10, 1.46378130e-10, 1.46378130e-10, 1.46378130e-10,
1.00972901e-11, 1.00972901e-11, 1.00972901e-11, 1.00972901e-11,
6.75936379e-13, 6.75936379e-13, 6.75936379e-13, 6.75936379e-13,
4.36475341e-14, 4.36475341e-14, 4.36475341e-14, 4.36475341e-14,
2.74911817e-15, 2.74911817e-15, 2.74911817e-15, 2.74911817e-15,
1.27642190e-16, 1.27642190e-16, 1.27642190e-16, 1.27642190e-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.32143977e-08, 1.32143977e-08, 1.32143977e-08, 1.32143977e-08,
9.51971412e-10, 9.51971412e-10, 9.51971412e-10, 9.51971412e-10,
6.75953534e-11, 6.75953534e-11, 6.75953534e-11, 6.75953534e-11,
4.70331966e-12, 4.70331966e-12, 4.70331966e-12, 4.70331966e-12,
3.18764803e-13, 3.18764803e-13, 3.18764803e-13, 3.18764803e-13,
2.09494671e-14, 2.09494671e-14, 2.09494671e-14, 2.09494671e-14,
1.31743856e-15, 1.31743856e-15, 1.31743856e-15, 1.31743856e-15,
4.60574943e-17, 4.60574943e-17, 4.60574943e-17, 4.60574943e-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.29963614e-08, 8.29963614e-08, 8.29963614e-08, 8.29963614e-08,
6.04553776e-09, 6.04553776e-09, 6.04553776e-09, 6.04553776e-09,
4.36752280e-10, 4.36752280e-10, 4.36752280e-10, 4.36752280e-10,
3.11603662e-11, 3.11603662e-11, 3.11603662e-11, 3.11603662e-11,
2.18421658e-12, 2.18421658e-12, 2.18421658e-12, 2.18421658e-12,
1.49587534e-13, 1.49587534e-13, 1.49587534e-13, 1.49587534e-13,
9.97191630e-15, 9.97191630e-15, 9.97191630e-15, 9.97191630e-15,
6.42162011e-16, 6.42162011e-16, 6.42162011e-16, 6.42162011e-16,
1.13635599e-17, 1.13635599e-17, 1.13635599e-17, 1.13635599e-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.79012478e-08, 3.79012478e-08, 3.79012478e-08, 3.79012478e-08,
2.76477953e-09, 2.76477953e-09, 2.76477953e-09, 2.76477953e-09,
2.00229803e-10, 2.00229803e-10, 2.00229803e-10, 2.00229803e-10,
1.43438806e-11, 1.43438806e-11, 1.43438806e-11, 1.43438806e-11,
1.01179628e-12, 1.01179628e-12, 1.01179628e-12, 1.01179628e-12,
6.99433569e-14, 6.99433569e-14, 6.99433569e-14, 6.99433569e-14,
4.71153508e-15, 4.71153508e-15, 4.71153508e-15, 4.71153508e-15,
2.80240614e-16, 2.80240614e-16, 2.80240614e-16, 2.80240614e-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.26389124e-09, 1.26389124e-09, 1.26389124e-09, 1.26389124e-09,
9.17314330e-11, 9.17314330e-11, 9.17314330e-11, 9.17314330e-11,
6.59452768e-12, 6.59452768e-12, 6.59452768e-12, 6.59452768e-12,
4.67741393e-13, 4.67741393e-13, 4.67741393e-13, 4.67741393e-13,
3.25602353e-14, 3.25602353e-14, 3.25602353e-14, 3.25602353e-14,
2.15135027e-15, 2.15135027e-15, 2.15135027e-15, 2.15135027e-15,
1.39376504e-16, 1.39376504e-16, 1.39376504e-16, 1.39376504e-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.89913838e-09, 7.89913838e-09, 7.89913838e-09, 7.89913838e-09,
5.77602086e-10, 5.77602086e-10, 5.77602086e-10, 5.77602086e-10,
4.20008868e-11, 4.20008868e-11, 4.20008868e-11, 4.20008868e-11,
3.02873837e-12, 3.02873837e-12, 3.02873837e-12, 3.02873837e-12,
2.15831963e-13, 2.15831963e-13, 2.15831963e-13, 2.15831963e-13,
1.50295915e-14, 1.50295915e-14, 1.50295915e-14, 1.50295915e-14,
1.04120098e-15, 1.04120098e-15, 1.04120098e-15, 1.04120098e-15,
4.63447807e-17, 4.63447807e-17, 4.63447807e-17, 4.63447807e-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.90964693e-08, 4.90964693e-08, 4.90964693e-08, 4.90964693e-08,
3.60523555e-09, 3.60523555e-09, 3.60523555e-09, 3.60523555e-09,
2.63885894e-10, 2.63885894e-10, 2.63885894e-10, 2.63885894e-10,
1.92205671e-11, 1.92205671e-11, 1.92205671e-11, 1.92205671e-11,
1.38969071e-12, 1.38969071e-12, 1.38969071e-12, 1.38969071e-12,
9.92889369e-14, 9.92889369e-14, 9.92889369e-14, 9.92889369e-14,
7.02190885e-15, 7.02190885e-15, 7.02190885e-15, 7.02190885e-15,
5.03109752e-16, 5.03109752e-16, 5.03109752e-16, 5.03109752e-16,
1.14197131e-17, 1.14197131e-17, 1.14197131e-17, 1.14197131e-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.11419587e-06, 4.11419587e-06, 4.11419587e-06, 4.11419587e-06,
3.03837918e-07, 3.03837918e-07, 3.03837918e-07, 3.03837918e-07,
2.23849015e-08, 2.23849015e-08, 2.23849015e-08, 2.23849015e-08,
1.64507685e-09, 1.64507685e-09, 1.64507685e-09, 1.64507685e-09,
1.20527947e-10, 1.20527947e-10, 1.20527947e-10, 1.20527947e-10,
8.79172842e-12, 8.79172842e-12, 8.79172842e-12, 8.79172842e-12,
6.36977609e-13, 6.36977609e-13, 6.36977609e-13, 6.36977609e-13,
4.57751494e-14, 4.57751494e-14, 4.57751494e-14, 4.57751494e-14,
3.29081172e-15, 3.29081172e-15, 3.29081172e-15, 3.29081172e-15,
1.98065885e-16, 1.98065885e-16, 1.98065885e-16, 1.98065885e-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.38344703e-07, 1.38344703e-07, 1.38344703e-07, 1.38344703e-07,
1.02018843e-08, 1.02018843e-08, 1.02018843e-08, 1.02018843e-08,
7.50419965e-10, 7.50419965e-10, 7.50419965e-10, 7.50419965e-10,
5.50339657e-11, 5.50339657e-11, 5.50339657e-11, 5.50339657e-11,
4.01955450e-12, 4.01955450e-12, 4.01955450e-12, 4.01955450e-12,
2.91902480e-13, 2.91902480e-13, 2.91902480e-13, 2.91902480e-13,
2.12011466e-14, 2.12011466e-14, 2.12011466e-14, 2.12011466e-14,
1.46257755e-15, 1.46257755e-15, 1.46257755e-15, 1.46257755e-15,
5.84103605e-17, 5.84103605e-17, 5.84103605e-17, 5.84103605e-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.29700500e-08, 6.29700500e-08, 6.29700500e-08, 6.29700500e-08,
4.64771792e-09, 4.64771792e-09, 4.64771792e-09, 4.64771792e-09,
3.42187337e-10, 3.42187337e-10, 3.42187337e-10, 3.42187337e-10,
2.51200391e-11, 2.51200391e-11, 2.51200391e-11, 2.51200391e-11,
1.83716918e-12, 1.83716918e-12, 1.83716918e-12, 1.83716918e-12,
1.33864818e-13, 1.33864818e-13, 1.33864818e-13, 1.33864818e-13,
9.58780086e-15, 9.58780086e-15, 9.58780086e-15, 9.58780086e-15,
6.67599382e-16, 6.67599382e-16, 6.67599382e-16, 6.67599382e-16,
1.14274703e-17, 1.14274703e-17, 1.14274703e-17, 1.14274703e-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.86975588e-07, 3.86975588e-07, 3.86975588e-07, 3.86975588e-07,
2.86533267e-08, 2.86533267e-08, 2.86533267e-08, 2.86533267e-08,
2.11667452e-09, 2.11667452e-09, 2.11667452e-09, 2.11667452e-09,
1.55981240e-10, 1.55981240e-10, 1.55981240e-10, 1.55981240e-10,
1.14621089e-11, 1.14621089e-11, 1.14621089e-11, 1.14621089e-11,
8.39520289e-13, 8.39520289e-13, 8.39520289e-13, 8.39520289e-13,
6.10777554e-14, 6.10777554e-14, 6.10777554e-14, 6.10777554e-14,
4.42707683e-15, 4.42707683e-15, 4.42707683e-15, 4.42707683e-15,
2.92606480e-16, 2.92606480e-16, 2.92606480e-16, 2.92606480e-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.30328077e-08, 1.30328077e-08, 1.30328077e-08, 1.30328077e-08,
9.63639604e-10, 9.63639604e-10, 9.63639604e-10, 9.63639604e-10,
7.10765283e-11, 7.10765283e-11, 7.10765283e-11, 7.10765283e-11,
5.22828506e-12, 5.22828506e-12, 5.22828506e-12, 5.22828506e-12,
3.83211940e-13, 3.83211940e-13, 3.83211940e-13, 3.83211940e-13,
2.79714432e-14, 2.79714432e-14, 2.79714432e-14, 2.79714432e-14,
2.00239688e-15, 2.00239688e-15, 2.00239688e-15, 2.00239688e-15,
1.39577301e-16, 1.39577301e-16, 1.39577301e-16, 1.39577301e-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.98515069e-08, 7.98515069e-08, 7.98515069e-08, 7.98515069e-08,
5.92527084e-09, 5.92527084e-09, 5.92527084e-09, 5.92527084e-09,
4.38545977e-10, 4.38545977e-10, 4.38545977e-10, 4.38545977e-10,
3.23766452e-11, 3.23766452e-11, 3.23766452e-11, 3.23766452e-11,
2.38373999e-12, 2.38373999e-12, 2.38373999e-12, 2.38373999e-12,
1.75028789e-13, 1.75028789e-13, 1.75028789e-13, 1.75028789e-13,
1.27892735e-14, 1.27892735e-14, 1.27892735e-14, 1.27892735e-14,
8.88419813e-16, 8.88419813e-16, 8.88419813e-16, 8.88419813e-16,
3.55286300e-17, 3.55286300e-17, 3.55286300e-17, 3.55286300e-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.69260275e-09, 2.69260275e-09, 2.69260275e-09, 2.69260275e-09,
1.99494344e-10, 1.99494344e-10, 1.99494344e-10, 1.99494344e-10,
1.47424198e-11, 1.47424198e-11, 1.47424198e-11, 1.47424198e-11,
1.08665588e-12, 1.08665588e-12, 1.08665588e-12, 1.08665588e-12,
7.98900551e-14, 7.98900551e-14, 7.98900551e-14, 7.98900551e-14,
5.74543687e-15, 5.74543687e-15, 5.74543687e-15, 5.74543687e-15,
3.74246134e-16, 3.74246134e-16, 3.74246134e-16, 3.74246134e-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]), '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.64480943e-08, 1.64480943e-08, 1.64480943e-08, 1.64480943e-08,
1.22307281e-09, 1.22307281e-09, 1.22307281e-09, 1.22307281e-09,
9.07116444e-11, 9.07116444e-11, 9.07116444e-11, 9.07116444e-11,
6.71040198e-12, 6.71040198e-12, 6.71040198e-12, 6.71040198e-12,
4.95138882e-13, 4.95138882e-13, 4.95138882e-13, 4.95138882e-13,
3.63525561e-14, 3.63525561e-14, 3.63525561e-14, 3.63525561e-14,
2.57574053e-15, 2.57574053e-15, 2.57574053e-15, 2.57574053e-15,
1.50998902e-16, 1.50998902e-16, 1.50998902e-16, 1.50998902e-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.99987459e-08, 9.99987459e-08, 9.99987459e-08, 9.99987459e-08,
7.46125181e-09, 7.46125181e-09, 7.46125181e-09, 7.46125181e-09,
5.55345414e-10, 5.55345414e-10, 5.55345414e-10, 5.55345414e-10,
4.12299497e-11, 4.12299497e-11, 4.12299497e-11, 4.12299497e-11,
3.05317647e-12, 3.05317647e-12, 3.05317647e-12, 3.05317647e-12,
2.25404963e-13, 2.25404963e-13, 2.25404963e-13, 2.25404963e-13,
1.64906646e-14, 1.64906646e-14, 1.64906646e-14, 1.64906646e-14,
1.14601822e-15, 1.14601822e-15, 1.14601822e-15, 1.14601822e-15,
4.62768323e-17, 4.62768323e-17, 4.62768323e-17, 4.62768323e-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.38340688e-09, 3.38340688e-09, 3.38340688e-09, 3.38340688e-09,
2.52067818e-10, 2.52067818e-10, 2.52067818e-10, 2.52067818e-10,
1.87324876e-11, 1.87324876e-11, 1.87324876e-11, 1.87324876e-11,
1.38852565e-12, 1.38852565e-12, 1.38852565e-12, 1.38852565e-12,
1.02459592e-13, 1.02459592e-13, 1.02459592e-13, 1.02459592e-13,
7.43087974e-15, 7.43087974e-15, 7.43087974e-15, 7.43087974e-15,
5.49179378e-16, 5.49179378e-16, 5.49179378e-16, 5.49179378e-16,
1.14063637e-17, 1.14063637e-17, 1.14063637e-17, 1.14063637e-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.53361064e-09, 1.53361064e-09, 1.53361064e-09, 1.53361064e-09,
1.14369026e-10, 1.14369026e-10, 1.14369026e-10, 1.14369026e-10,
8.50759361e-12, 8.50759361e-12, 8.50759361e-12, 8.50759361e-12,
6.31019787e-13, 6.31019787e-13, 6.31019787e-13, 6.31019787e-13,
4.65731418e-14, 4.65731418e-14, 4.65731418e-14, 4.65731418e-14,
3.41568785e-15, 3.41568785e-15, 3.41568785e-15, 3.41568785e-15,
2.09837436e-16, 2.09837436e-16, 2.09837436e-16, 2.09837436e-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.28475936e-09, 9.28475936e-09, 9.28475936e-09, 9.28475936e-09,
6.94864882e-10, 6.94864882e-10, 6.94864882e-10, 6.94864882e-10,
5.18713076e-11, 5.18713076e-11, 5.18713076e-11, 5.18713076e-11,
3.86215245e-12, 3.86215245e-12, 3.86215245e-12, 3.86215245e-12,
2.86729339e-13, 2.86729339e-13, 2.86729339e-13, 2.86729339e-13,
2.12263905e-14, 2.12263905e-14, 2.12263905e-14, 2.12263905e-14,
1.50770497e-15, 1.50770497e-15, 1.50770497e-15, 1.50770497e-15,
5.83240862e-17, 5.83240862e-17, 5.83240862e-17, 5.83240862e-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.43754126e-07, 7.43754126e-07, 7.43754126e-07, 7.43754126e-07,
5.59602798e-08, 5.59602798e-08, 5.59602798e-08, 5.59602798e-08,
4.20149900e-09, 4.20149900e-09, 4.20149900e-09, 4.20149900e-09,
3.14719618e-10, 3.14719618e-10, 3.14719618e-10, 3.14719618e-10,
2.35163843e-11, 2.35163843e-11, 2.35163843e-11, 2.35163843e-11,
1.75272451e-12, 1.75272451e-12, 1.75272451e-12, 1.75272451e-12,
1.30268527e-13, 1.30268527e-13, 1.30268527e-13, 1.30268527e-13,
9.53228040e-15, 9.53228040e-15, 9.53228040e-15, 9.53228040e-15,
6.66890320e-16, 6.66890320e-16, 6.66890320e-16, 6.66890320e-16,
1.13902281e-17, 1.13902281e-17, 1.13902281e-17, 1.13902281e-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.52955864e-08, 2.52955864e-08, 2.52955864e-08, 2.52955864e-08,
1.90071382e-09, 1.90071382e-09, 1.90071382e-09, 1.90071382e-09,
1.42497162e-10, 1.42497162e-10, 1.42497162e-10, 1.42497162e-10,
1.06576407e-11, 1.06576407e-11, 1.06576407e-11, 1.06576407e-11,
7.95082976e-13, 7.95082976e-13, 7.95082976e-13, 7.95082976e-13,
5.89524579e-14, 5.89524579e-14, 5.89524579e-14, 5.89524579e-14,
4.35118931e-15, 4.35118931e-15, 4.35118931e-15, 4.35118931e-15,
2.92221983e-16, 2.92221983e-16, 2.92221983e-16, 2.92221983e-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.51640691e-07, 1.51640691e-07, 1.51640691e-07, 1.51640691e-07,
1.14299112e-08, 1.14299112e-08, 1.14299112e-08, 1.14299112e-08,
8.59588889e-10, 8.59588889e-10, 8.59588889e-10, 8.59588889e-10,
6.44986576e-11, 6.44986576e-11, 6.44986576e-11, 6.44986576e-11,
4.82825781e-12, 4.82825781e-12, 4.82825781e-12, 4.82825781e-12,
3.60293269e-13, 3.60293269e-13, 3.60293269e-13, 3.60293269e-13,
2.67754040e-14, 2.67754040e-14, 2.67754040e-14, 2.67754040e-14,
1.97749692e-15, 1.97749692e-15, 1.97749692e-15, 1.97749692e-15,
1.39345500e-16, 1.39345500e-16, 1.39345500e-16, 1.39345500e-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.00204016e-08, 1.00204016e-08, 1.00204016e-08, 1.00204016e-08,
7.48783684e-10, 7.48783684e-10, 7.48783684e-10, 7.48783684e-10,
5.58270908e-11, 5.58270908e-11, 5.58270908e-11, 5.58270908e-11,
4.15152045e-12, 4.15152045e-12, 4.15152045e-12, 4.15152045e-12,
3.07797034e-13, 3.07797034e-13, 3.07797034e-13, 3.07797034e-13,
2.26911152e-14, 2.26911152e-14, 2.26911152e-14, 2.26911152e-14,
1.60795828e-15, 1.60795828e-15, 1.60795828e-15, 1.60795828e-15,
8.79856092e-17, 8.79856092e-17, 8.79856092e-17, 8.79856092e-17,
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.42183401e-07, 1.42183401e-07, 1.42183401e-07, 1.42183401e-07,
1.05285749e-08, 1.05285749e-08, 1.05285749e-08, 1.05285749e-08,
7.77701488e-10, 7.77701488e-10, 7.77701488e-10, 7.77701488e-10,
5.73010457e-11, 5.73010457e-11, 5.73010457e-11, 5.73010457e-11,
4.21117927e-12, 4.21117927e-12, 4.21117927e-12, 4.21117927e-12,
3.08671287e-13, 3.08671287e-13, 3.08671287e-13, 3.08671287e-13,
2.24554100e-14, 2.24554100e-14, 2.24554100e-14, 2.24554100e-14,
1.59293686e-15, 1.59293686e-15, 1.59293686e-15, 1.59293686e-15,
1.02454422e-16, 1.02454422e-16, 1.02454422e-16, 1.02454422e-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.00397592e-09, 1.00397592e-09, 1.00397592e-09, 1.00397592e-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.01915978e-08, 8.01915978e-08, 8.01915978e-08, 8.01915978e-08,
1.84159268e-09, 1.84159268e-09, 1.84159268e-09, 1.84159268e-09,
3.02840271e-11, 3.02840271e-11, 3.02840271e-11, 3.02840271e-11,
3.31064432e-13, 3.31064432e-13, 3.31064432e-13, 3.31064432e-13,
2.09343286e-15, 2.09343286e-15, 2.09343286e-15, 2.09343286e-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.25358487e-08, 6.25358487e-08, 6.25358487e-08, 6.25358487e-08,
1.91748501e-09, 1.91748501e-09, 1.91748501e-09, 1.91748501e-09,
4.62606718e-11, 4.62606718e-11, 4.62606718e-11, 4.62606718e-11,
8.51280219e-13, 8.51280219e-13, 8.51280219e-13, 8.51280219e-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.51483227e-09, 1.51483227e-09, 1.51483227e-09, 1.51483227e-09,
4.65132240e-11, 4.65132240e-11, 4.65132240e-11, 4.65132240e-11,
1.16292780e-12, 1.16292780e-12, 1.16292780e-12, 1.16292780e-12,
2.31305668e-14, 2.31305668e-14, 2.31305668e-14, 2.31305668e-14,
3.58178583e-16, 3.58178583e-16, 3.58178583e-16, 3.58178583e-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.02173680e-09, 1.02173680e-09, 1.02173680e-09, 1.02173680e-09,
3.71041410e-11, 3.71041410e-11, 3.71041410e-11, 3.71041410e-11,
1.14136465e-12, 1.14136465e-12, 1.14136465e-12, 1.14136465e-12,
2.92663456e-14, 2.92663456e-14, 2.92663456e-14, 2.92663456e-14,
6.09300121e-16, 6.09300121e-16, 6.09300121e-16, 6.09300121e-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.23193622e-10, 6.23193622e-10, 6.23193622e-10, 6.23193622e-10,
2.56186646e-11, 2.56186646e-11, 2.56186646e-11, 2.56186646e-11,
9.16357815e-13, 9.16357815e-13, 9.16357815e-13, 9.16357815e-13,
2.82083808e-14, 2.82083808e-14, 2.82083808e-14, 2.82083808e-14,
7.14716636e-16, 7.14716636e-16, 7.14716636e-16, 7.14716636e-16,
1.99155595e-17, 1.99155595e-17, 1.99155595e-17, 1.99155595e-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]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 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.03125044e-09, 7.03125044e-09, 7.03125044e-09, 7.03125044e-09,
3.55048132e-10, 3.55048132e-10, 3.55048132e-10, 3.55048132e-10,
1.60551512e-11, 1.60551512e-11, 1.60551512e-11, 1.60551512e-11,
6.44443381e-13, 6.44443381e-13, 6.44443381e-13, 6.44443381e-13,
2.27317978e-14, 2.27317978e-14, 2.27317978e-14, 2.27317978e-14,
6.70561366e-16, 6.70561366e-16, 6.70561366e-16, 6.70561366e-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.15180945e-08, 6.15180945e-08, 6.15180945e-08, 6.15180945e-08,
3.59623291e-09, 3.59623291e-09, 3.59623291e-09, 3.59623291e-09,
1.92933376e-10, 1.92933376e-10, 1.92933376e-10, 1.92933376e-10,
9.40775477e-12, 9.40775477e-12, 9.40775477e-12, 9.40775477e-12,
4.13524220e-13, 4.13524220e-13, 4.13524220e-13, 4.13524220e-13,
1.62476308e-14, 1.62476308e-14, 1.62476308e-14, 1.62476308e-14,
5.50769866e-16, 5.50769866e-16, 5.50769866e-16, 5.50769866e-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.96179807e-08, 2.96179807e-08, 2.96179807e-08, 2.96179807e-08,
1.79683459e-09, 1.79683459e-09, 1.79683459e-09, 1.79683459e-09,
1.01205787e-10, 1.01205787e-10, 1.01205787e-10, 1.01205787e-10,
5.24433457e-12, 5.24433457e-12, 5.24433457e-12, 5.24433457e-12,
2.48198967e-13, 2.48198967e-13, 2.48198967e-13, 2.48198967e-13,
1.06051291e-14, 1.06051291e-14, 1.06051291e-14, 1.06051291e-14,
3.76402908e-16, 3.76402908e-16, 3.76402908e-16, 3.76402908e-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.82092688e-10, 8.82092688e-10, 8.82092688e-10, 8.82092688e-10,
5.16972571e-11, 5.16972571e-11, 5.16972571e-11, 5.16972571e-11,
2.81591800e-12, 2.81591800e-12, 2.81591800e-12, 2.81591800e-12,
1.41489325e-13, 1.41489325e-13, 1.41489325e-13, 1.41489325e-13,
6.49453029e-15, 6.49453029e-15, 6.49453029e-15, 6.49453029e-15,
2.36749553e-16, 2.36749553e-16, 2.36749553e-16, 2.36749553e-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.66943139e-09, 6.66943139e-09, 6.66943139e-09, 6.66943139e-09,
4.27344816e-10, 4.27344816e-10, 4.27344816e-10, 4.27344816e-10,
2.58814650e-11, 2.58814650e-11, 2.58814650e-11, 2.58814650e-11,
1.46930810e-12, 1.46930810e-12, 1.46930810e-12, 1.46930810e-12,
7.76492225e-14, 7.76492225e-14, 7.76492225e-14, 7.76492225e-14,
3.73743999e-15, 3.73743999e-15, 3.73743999e-15, 3.73743999e-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.60110800e-08, 4.60110800e-08, 4.60110800e-08, 4.60110800e-08,
3.13257582e-09, 3.13257582e-09, 3.13257582e-09, 3.13257582e-09,
2.04833964e-10, 2.04833964e-10, 2.04833964e-10, 2.04833964e-10,
1.27490295e-11, 1.27490295e-11, 1.27490295e-11, 1.27490295e-11,
7.49470668e-13, 7.49470668e-13, 7.49470668e-13, 7.49470668e-13,
4.12681631e-14, 4.12681631e-14, 4.12681631e-14, 4.12681631e-14,
2.08559499e-15, 2.08559499e-15, 2.08559499e-15, 2.08559499e-15,
5.60541096e-17, 5.60541096e-17, 5.60541096e-17, 5.60541096e-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.12578536e-08, 2.12578536e-08, 2.12578536e-08, 2.12578536e-08,
1.46423022e-09, 1.46423022e-09, 1.46423022e-09, 1.46423022e-09,
9.73780648e-11, 9.73780648e-11, 9.73780648e-11, 9.73780648e-11,
6.20166085e-12, 6.20166085e-12, 6.20166085e-12, 6.20166085e-12,
3.75376076e-13, 3.75376076e-13, 3.75376076e-13, 3.75376076e-13,
2.14217464e-14, 2.14217464e-14, 2.14217464e-14, 2.14217464e-14,
1.09531230e-15, 1.09531230e-15, 1.09531230e-15, 1.09531230e-15,
2.33215395e-17, 2.33215395e-17, 2.33215395e-17, 2.33215395e-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.37703295e-07, 1.37703295e-07, 1.37703295e-07, 1.37703295e-07,
9.80046712e-09, 9.80046712e-09, 9.80046712e-09, 9.80046712e-09,
6.81680669e-10, 6.81680669e-10, 6.81680669e-10, 6.81680669e-10,
4.59859280e-11, 4.59859280e-11, 4.59859280e-11, 4.59859280e-11,
2.98608780e-12, 2.98608780e-12, 2.98608780e-12, 2.98608780e-12,
1.85261212e-13, 1.85261212e-13, 1.85261212e-13, 1.85261212e-13,
1.08397957e-14, 1.08397957e-14, 1.08397957e-14, 1.08397957e-14,
6.03543724e-16, 6.03543724e-16, 6.03543724e-16, 6.03543724e-16,
1.12027689e-17, 1.12027689e-17, 1.12027689e-17, 1.12027689e-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.30649884e-08, 6.30649884e-08, 6.30649884e-08, 6.30649884e-08,
4.51037174e-09, 4.51037174e-09, 4.51037174e-09, 4.51037174e-09,
3.16293220e-10, 3.16293220e-10, 3.16293220e-10, 3.16293220e-10,
2.15961451e-11, 2.15961451e-11, 2.15961451e-11, 2.15961451e-11,
1.42563768e-12, 1.42563768e-12, 1.42563768e-12, 1.42563768e-12,
9.02782921e-14, 9.02782921e-14, 9.02782921e-14, 9.02782921e-14,
5.45488413e-15, 5.45488413e-15, 5.45488413e-15, 5.45488413e-15,
3.24213061e-16, 3.24213061e-16, 3.24213061e-16, 3.24213061e-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.88737198e-08, 2.88737198e-08, 2.88737198e-08, 2.88737198e-08,
2.07323027e-09, 2.07323027e-09, 2.07323027e-09, 2.07323027e-09,
1.46378130e-10, 1.46378130e-10, 1.46378130e-10, 1.46378130e-10,
1.00972901e-11, 1.00972901e-11, 1.00972901e-11, 1.00972901e-11,
6.75936379e-13, 6.75936379e-13, 6.75936379e-13, 6.75936379e-13,
4.36475341e-14, 4.36475341e-14, 4.36475341e-14, 4.36475341e-14,
2.74911817e-15, 2.74911817e-15, 2.74911817e-15, 2.74911817e-15,
1.27642190e-16, 1.27642190e-16, 1.27642190e-16, 1.27642190e-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.32143977e-08, 1.32143977e-08, 1.32143977e-08, 1.32143977e-08,
9.51971412e-10, 9.51971412e-10, 9.51971412e-10, 9.51971412e-10,
6.75953534e-11, 6.75953534e-11, 6.75953534e-11, 6.75953534e-11,
4.70331966e-12, 4.70331966e-12, 4.70331966e-12, 4.70331966e-12,
3.18764803e-13, 3.18764803e-13, 3.18764803e-13, 3.18764803e-13,
2.09494671e-14, 2.09494671e-14, 2.09494671e-14, 2.09494671e-14,
1.31743856e-15, 1.31743856e-15, 1.31743856e-15, 1.31743856e-15,
4.60574943e-17, 4.60574943e-17, 4.60574943e-17, 4.60574943e-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.29963614e-08, 8.29963614e-08, 8.29963614e-08, 8.29963614e-08,
6.04553776e-09, 6.04553776e-09, 6.04553776e-09, 6.04553776e-09,
4.36752280e-10, 4.36752280e-10, 4.36752280e-10, 4.36752280e-10,
3.11603662e-11, 3.11603662e-11, 3.11603662e-11, 3.11603662e-11,
2.18421658e-12, 2.18421658e-12, 2.18421658e-12, 2.18421658e-12,
1.49587534e-13, 1.49587534e-13, 1.49587534e-13, 1.49587534e-13,
9.97191630e-15, 9.97191630e-15, 9.97191630e-15, 9.97191630e-15,
6.42162011e-16, 6.42162011e-16, 6.42162011e-16, 6.42162011e-16,
1.13635599e-17, 1.13635599e-17, 1.13635599e-17, 1.13635599e-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.79012478e-08, 3.79012478e-08, 3.79012478e-08, 3.79012478e-08,
2.76477953e-09, 2.76477953e-09, 2.76477953e-09, 2.76477953e-09,
2.00229803e-10, 2.00229803e-10, 2.00229803e-10, 2.00229803e-10,
1.43438806e-11, 1.43438806e-11, 1.43438806e-11, 1.43438806e-11,
1.01179628e-12, 1.01179628e-12, 1.01179628e-12, 1.01179628e-12,
6.99433569e-14, 6.99433569e-14, 6.99433569e-14, 6.99433569e-14,
4.71153508e-15, 4.71153508e-15, 4.71153508e-15, 4.71153508e-15,
2.80240614e-16, 2.80240614e-16, 2.80240614e-16, 2.80240614e-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.26389124e-09, 1.26389124e-09, 1.26389124e-09, 1.26389124e-09,
9.17314330e-11, 9.17314330e-11, 9.17314330e-11, 9.17314330e-11,
6.59452768e-12, 6.59452768e-12, 6.59452768e-12, 6.59452768e-12,
4.67741393e-13, 4.67741393e-13, 4.67741393e-13, 4.67741393e-13,
3.25602353e-14, 3.25602353e-14, 3.25602353e-14, 3.25602353e-14,
2.15135027e-15, 2.15135027e-15, 2.15135027e-15, 2.15135027e-15,
1.39376504e-16, 1.39376504e-16, 1.39376504e-16, 1.39376504e-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.89913838e-09, 7.89913838e-09, 7.89913838e-09, 7.89913838e-09,
5.77602086e-10, 5.77602086e-10, 5.77602086e-10, 5.77602086e-10,
4.20008868e-11, 4.20008868e-11, 4.20008868e-11, 4.20008868e-11,
3.02873837e-12, 3.02873837e-12, 3.02873837e-12, 3.02873837e-12,
2.15831963e-13, 2.15831963e-13, 2.15831963e-13, 2.15831963e-13,
1.50295915e-14, 1.50295915e-14, 1.50295915e-14, 1.50295915e-14,
1.04120098e-15, 1.04120098e-15, 1.04120098e-15, 1.04120098e-15,
4.63447807e-17, 4.63447807e-17, 4.63447807e-17, 4.63447807e-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.90964693e-08, 4.90964693e-08, 4.90964693e-08, 4.90964693e-08,
3.60523555e-09, 3.60523555e-09, 3.60523555e-09, 3.60523555e-09,
2.63885894e-10, 2.63885894e-10, 2.63885894e-10, 2.63885894e-10,
1.92205671e-11, 1.92205671e-11, 1.92205671e-11, 1.92205671e-11,
1.38969071e-12, 1.38969071e-12, 1.38969071e-12, 1.38969071e-12,
9.92889369e-14, 9.92889369e-14, 9.92889369e-14, 9.92889369e-14,
7.02190885e-15, 7.02190885e-15, 7.02190885e-15, 7.02190885e-15,
5.03109752e-16, 5.03109752e-16, 5.03109752e-16, 5.03109752e-16,
1.14197131e-17, 1.14197131e-17, 1.14197131e-17, 1.14197131e-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.11419587e-06, 4.11419587e-06, 4.11419587e-06, 4.11419587e-06,
3.03837918e-07, 3.03837918e-07, 3.03837918e-07, 3.03837918e-07,
2.23849015e-08, 2.23849015e-08, 2.23849015e-08, 2.23849015e-08,
1.64507685e-09, 1.64507685e-09, 1.64507685e-09, 1.64507685e-09,
1.20527947e-10, 1.20527947e-10, 1.20527947e-10, 1.20527947e-10,
8.79172842e-12, 8.79172842e-12, 8.79172842e-12, 8.79172842e-12,
6.36977609e-13, 6.36977609e-13, 6.36977609e-13, 6.36977609e-13,
4.57751494e-14, 4.57751494e-14, 4.57751494e-14, 4.57751494e-14,
3.29081172e-15, 3.29081172e-15, 3.29081172e-15, 3.29081172e-15,
1.98065885e-16, 1.98065885e-16, 1.98065885e-16, 1.98065885e-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.38344703e-07, 1.38344703e-07, 1.38344703e-07, 1.38344703e-07,
1.02018843e-08, 1.02018843e-08, 1.02018843e-08, 1.02018843e-08,
7.50419965e-10, 7.50419965e-10, 7.50419965e-10, 7.50419965e-10,
5.50339657e-11, 5.50339657e-11, 5.50339657e-11, 5.50339657e-11,
4.01955450e-12, 4.01955450e-12, 4.01955450e-12, 4.01955450e-12,
2.91902480e-13, 2.91902480e-13, 2.91902480e-13, 2.91902480e-13,
2.12011466e-14, 2.12011466e-14, 2.12011466e-14, 2.12011466e-14,
1.46257755e-15, 1.46257755e-15, 1.46257755e-15, 1.46257755e-15,
5.84103605e-17, 5.84103605e-17, 5.84103605e-17, 5.84103605e-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.29700500e-08, 6.29700500e-08, 6.29700500e-08, 6.29700500e-08,
4.64771792e-09, 4.64771792e-09, 4.64771792e-09, 4.64771792e-09,
3.42187337e-10, 3.42187337e-10, 3.42187337e-10, 3.42187337e-10,
2.51200391e-11, 2.51200391e-11, 2.51200391e-11, 2.51200391e-11,
1.83716918e-12, 1.83716918e-12, 1.83716918e-12, 1.83716918e-12,
1.33864818e-13, 1.33864818e-13, 1.33864818e-13, 1.33864818e-13,
9.58780086e-15, 9.58780086e-15, 9.58780086e-15, 9.58780086e-15,
6.67599382e-16, 6.67599382e-16, 6.67599382e-16, 6.67599382e-16,
1.14274703e-17, 1.14274703e-17, 1.14274703e-17, 1.14274703e-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.86975588e-07, 3.86975588e-07, 3.86975588e-07, 3.86975588e-07,
2.86533267e-08, 2.86533267e-08, 2.86533267e-08, 2.86533267e-08,
2.11667452e-09, 2.11667452e-09, 2.11667452e-09, 2.11667452e-09,
1.55981240e-10, 1.55981240e-10, 1.55981240e-10, 1.55981240e-10,
1.14621089e-11, 1.14621089e-11, 1.14621089e-11, 1.14621089e-11,
8.39520289e-13, 8.39520289e-13, 8.39520289e-13, 8.39520289e-13,
6.10777554e-14, 6.10777554e-14, 6.10777554e-14, 6.10777554e-14,
4.42707683e-15, 4.42707683e-15, 4.42707683e-15, 4.42707683e-15,
2.92606480e-16, 2.92606480e-16, 2.92606480e-16, 2.92606480e-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.30328077e-08, 1.30328077e-08, 1.30328077e-08, 1.30328077e-08,
9.63639604e-10, 9.63639604e-10, 9.63639604e-10, 9.63639604e-10,
7.10765283e-11, 7.10765283e-11, 7.10765283e-11, 7.10765283e-11,
5.22828506e-12, 5.22828506e-12, 5.22828506e-12, 5.22828506e-12,
3.83211940e-13, 3.83211940e-13, 3.83211940e-13, 3.83211940e-13,
2.79714432e-14, 2.79714432e-14, 2.79714432e-14, 2.79714432e-14,
2.00239688e-15, 2.00239688e-15, 2.00239688e-15, 2.00239688e-15,
1.39577301e-16, 1.39577301e-16, 1.39577301e-16, 1.39577301e-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.98515069e-08, 7.98515069e-08, 7.98515069e-08, 7.98515069e-08,
5.92527084e-09, 5.92527084e-09, 5.92527084e-09, 5.92527084e-09,
4.38545977e-10, 4.38545977e-10, 4.38545977e-10, 4.38545977e-10,
3.23766452e-11, 3.23766452e-11, 3.23766452e-11, 3.23766452e-11,
2.38373999e-12, 2.38373999e-12, 2.38373999e-12, 2.38373999e-12,
1.75028789e-13, 1.75028789e-13, 1.75028789e-13, 1.75028789e-13,
1.27892735e-14, 1.27892735e-14, 1.27892735e-14, 1.27892735e-14,
8.88419813e-16, 8.88419813e-16, 8.88419813e-16, 8.88419813e-16,
3.55286300e-17, 3.55286300e-17, 3.55286300e-17, 3.55286300e-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.69260275e-09, 2.69260275e-09, 2.69260275e-09, 2.69260275e-09,
1.99494344e-10, 1.99494344e-10, 1.99494344e-10, 1.99494344e-10,
1.47424198e-11, 1.47424198e-11, 1.47424198e-11, 1.47424198e-11,
1.08665588e-12, 1.08665588e-12, 1.08665588e-12, 1.08665588e-12,
7.98900551e-14, 7.98900551e-14, 7.98900551e-14, 7.98900551e-14,
5.74543687e-15, 5.74543687e-15, 5.74543687e-15, 5.74543687e-15,
3.74246134e-16, 3.74246134e-16, 3.74246134e-16, 3.74246134e-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]), '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.64480943e-08, 1.64480943e-08, 1.64480943e-08, 1.64480943e-08,
1.22307281e-09, 1.22307281e-09, 1.22307281e-09, 1.22307281e-09,
9.07116444e-11, 9.07116444e-11, 9.07116444e-11, 9.07116444e-11,
6.71040198e-12, 6.71040198e-12, 6.71040198e-12, 6.71040198e-12,
4.95138882e-13, 4.95138882e-13, 4.95138882e-13, 4.95138882e-13,
3.63525561e-14, 3.63525561e-14, 3.63525561e-14, 3.63525561e-14,
2.57574053e-15, 2.57574053e-15, 2.57574053e-15, 2.57574053e-15,
1.50998902e-16, 1.50998902e-16, 1.50998902e-16, 1.50998902e-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.99987459e-08, 9.99987459e-08, 9.99987459e-08, 9.99987459e-08,
7.46125181e-09, 7.46125181e-09, 7.46125181e-09, 7.46125181e-09,
5.55345414e-10, 5.55345414e-10, 5.55345414e-10, 5.55345414e-10,
4.12299497e-11, 4.12299497e-11, 4.12299497e-11, 4.12299497e-11,
3.05317647e-12, 3.05317647e-12, 3.05317647e-12, 3.05317647e-12,
2.25404963e-13, 2.25404963e-13, 2.25404963e-13, 2.25404963e-13,
1.64906646e-14, 1.64906646e-14, 1.64906646e-14, 1.64906646e-14,
1.14601822e-15, 1.14601822e-15, 1.14601822e-15, 1.14601822e-15,
4.62768323e-17, 4.62768323e-17, 4.62768323e-17, 4.62768323e-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.38340688e-09, 3.38340688e-09, 3.38340688e-09, 3.38340688e-09,
2.52067818e-10, 2.52067818e-10, 2.52067818e-10, 2.52067818e-10,
1.87324876e-11, 1.87324876e-11, 1.87324876e-11, 1.87324876e-11,
1.38852565e-12, 1.38852565e-12, 1.38852565e-12, 1.38852565e-12,
1.02459592e-13, 1.02459592e-13, 1.02459592e-13, 1.02459592e-13,
7.43087974e-15, 7.43087974e-15, 7.43087974e-15, 7.43087974e-15,
5.49179378e-16, 5.49179378e-16, 5.49179378e-16, 5.49179378e-16,
1.14063637e-17, 1.14063637e-17, 1.14063637e-17, 1.14063637e-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.53361064e-09, 1.53361064e-09, 1.53361064e-09, 1.53361064e-09,
1.14369026e-10, 1.14369026e-10, 1.14369026e-10, 1.14369026e-10,
8.50759361e-12, 8.50759361e-12, 8.50759361e-12, 8.50759361e-12,
6.31019787e-13, 6.31019787e-13, 6.31019787e-13, 6.31019787e-13,
4.65731418e-14, 4.65731418e-14, 4.65731418e-14, 4.65731418e-14,
3.41568785e-15, 3.41568785e-15, 3.41568785e-15, 3.41568785e-15,
2.09837436e-16, 2.09837436e-16, 2.09837436e-16, 2.09837436e-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.28475936e-09, 9.28475936e-09, 9.28475936e-09, 9.28475936e-09,
6.94864882e-10, 6.94864882e-10, 6.94864882e-10, 6.94864882e-10,
5.18713076e-11, 5.18713076e-11, 5.18713076e-11, 5.18713076e-11,
3.86215245e-12, 3.86215245e-12, 3.86215245e-12, 3.86215245e-12,
2.86729339e-13, 2.86729339e-13, 2.86729339e-13, 2.86729339e-13,
2.12263905e-14, 2.12263905e-14, 2.12263905e-14, 2.12263905e-14,
1.50770497e-15, 1.50770497e-15, 1.50770497e-15, 1.50770497e-15,
5.83240862e-17, 5.83240862e-17, 5.83240862e-17, 5.83240862e-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.43754126e-07, 7.43754126e-07, 7.43754126e-07, 7.43754126e-07,
5.59602798e-08, 5.59602798e-08, 5.59602798e-08, 5.59602798e-08,
4.20149900e-09, 4.20149900e-09, 4.20149900e-09, 4.20149900e-09,
3.14719618e-10, 3.14719618e-10, 3.14719618e-10, 3.14719618e-10,
2.35163843e-11, 2.35163843e-11, 2.35163843e-11, 2.35163843e-11,
1.75272451e-12, 1.75272451e-12, 1.75272451e-12, 1.75272451e-12,
1.30268527e-13, 1.30268527e-13, 1.30268527e-13, 1.30268527e-13,
9.53228040e-15, 9.53228040e-15, 9.53228040e-15, 9.53228040e-15,
6.66890320e-16, 6.66890320e-16, 6.66890320e-16, 6.66890320e-16,
1.13902281e-17, 1.13902281e-17, 1.13902281e-17, 1.13902281e-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.52955864e-08, 2.52955864e-08, 2.52955864e-08, 2.52955864e-08,
1.90071382e-09, 1.90071382e-09, 1.90071382e-09, 1.90071382e-09,
1.42497162e-10, 1.42497162e-10, 1.42497162e-10, 1.42497162e-10,
1.06576407e-11, 1.06576407e-11, 1.06576407e-11, 1.06576407e-11,
7.95082976e-13, 7.95082976e-13, 7.95082976e-13, 7.95082976e-13,
5.89524579e-14, 5.89524579e-14, 5.89524579e-14, 5.89524579e-14,
4.35118931e-15, 4.35118931e-15, 4.35118931e-15, 4.35118931e-15,
2.92221983e-16, 2.92221983e-16, 2.92221983e-16, 2.92221983e-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.51640691e-07, 1.51640691e-07, 1.51640691e-07, 1.51640691e-07,
1.14299112e-08, 1.14299112e-08, 1.14299112e-08, 1.14299112e-08,
8.59588889e-10, 8.59588889e-10, 8.59588889e-10, 8.59588889e-10,
6.44986576e-11, 6.44986576e-11, 6.44986576e-11, 6.44986576e-11,
4.82825781e-12, 4.82825781e-12, 4.82825781e-12, 4.82825781e-12,
3.60293269e-13, 3.60293269e-13, 3.60293269e-13, 3.60293269e-13,
2.67754040e-14, 2.67754040e-14, 2.67754040e-14, 2.67754040e-14,
1.97749692e-15, 1.97749692e-15, 1.97749692e-15, 1.97749692e-15,
1.39345500e-16, 1.39345500e-16, 1.39345500e-16, 1.39345500e-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.00204016e-08, 1.00204016e-08, 1.00204016e-08, 1.00204016e-08,
7.48783684e-10, 7.48783684e-10, 7.48783684e-10, 7.48783684e-10,
5.58270908e-11, 5.58270908e-11, 5.58270908e-11, 5.58270908e-11,
4.15152045e-12, 4.15152045e-12, 4.15152045e-12, 4.15152045e-12,
3.07797034e-13, 3.07797034e-13, 3.07797034e-13, 3.07797034e-13,
2.26911152e-14, 2.26911152e-14, 2.26911152e-14, 2.26911152e-14,
1.60795828e-15, 1.60795828e-15, 1.60795828e-15, 1.60795828e-15,
8.79856092e-17, 8.79856092e-17, 8.79856092e-17, 8.79856092e-17,
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.42183401e-07, 1.42183401e-07, 1.42183401e-07, 1.42183401e-07,
1.05285749e-08, 1.05285749e-08, 1.05285749e-08, 1.05285749e-08,
7.77701488e-10, 7.77701488e-10, 7.77701488e-10, 7.77701488e-10,
5.73010457e-11, 5.73010457e-11, 5.73010457e-11, 5.73010457e-11,
4.21117927e-12, 4.21117927e-12, 4.21117927e-12, 4.21117927e-12,
3.08671287e-13, 3.08671287e-13, 3.08671287e-13, 3.08671287e-13,
2.24554100e-14, 2.24554100e-14, 2.24554100e-14, 2.24554100e-14,
1.59293686e-15, 1.59293686e-15, 1.59293686e-15, 1.59293686e-15,
1.02454422e-16, 1.02454422e-16, 1.02454422e-16, 1.02454422e-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.00397592e-09, 1.00397592e-09, 1.00397592e-09, 1.00397592e-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.01915978e-08, 8.01915978e-08, 8.01915978e-08, 8.01915978e-08,
1.84159268e-09, 1.84159268e-09, 1.84159268e-09, 1.84159268e-09,
3.02840271e-11, 3.02840271e-11, 3.02840271e-11, 3.02840271e-11,
3.31064432e-13, 3.31064432e-13, 3.31064432e-13, 3.31064432e-13,
2.09343286e-15, 2.09343286e-15, 2.09343286e-15, 2.09343286e-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.25358487e-08, 6.25358487e-08, 6.25358487e-08, 6.25358487e-08,
1.91748501e-09, 1.91748501e-09, 1.91748501e-09, 1.91748501e-09,
4.62606718e-11, 4.62606718e-11, 4.62606718e-11, 4.62606718e-11,
8.51280219e-13, 8.51280219e-13, 8.51280219e-13, 8.51280219e-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.51483227e-09, 1.51483227e-09, 1.51483227e-09, 1.51483227e-09,
4.65132240e-11, 4.65132240e-11, 4.65132240e-11, 4.65132240e-11,
1.16292780e-12, 1.16292780e-12, 1.16292780e-12, 1.16292780e-12,
2.31305668e-14, 2.31305668e-14, 2.31305668e-14, 2.31305668e-14,
3.58178583e-16, 3.58178583e-16, 3.58178583e-16, 3.58178583e-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.02173680e-09, 1.02173680e-09, 1.02173680e-09, 1.02173680e-09,
3.71041410e-11, 3.71041410e-11, 3.71041410e-11, 3.71041410e-11,
1.14136465e-12, 1.14136465e-12, 1.14136465e-12, 1.14136465e-12,
2.92663456e-14, 2.92663456e-14, 2.92663456e-14, 2.92663456e-14,
6.09300121e-16, 6.09300121e-16, 6.09300121e-16, 6.09300121e-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.23193622e-10, 6.23193622e-10, 6.23193622e-10, 6.23193622e-10,
2.56186646e-11, 2.56186646e-11, 2.56186646e-11, 2.56186646e-11,
9.16357815e-13, 9.16357815e-13, 9.16357815e-13, 9.16357815e-13,
2.82083808e-14, 2.82083808e-14, 2.82083808e-14, 2.82083808e-14,
7.14716636e-16, 7.14716636e-16, 7.14716636e-16, 7.14716636e-16,
1.99155595e-17, 1.99155595e-17, 1.99155595e-17, 1.99155595e-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]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 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.03125044e-09, 7.03125044e-09, 7.03125044e-09, 7.03125044e-09,
3.55048132e-10, 3.55048132e-10, 3.55048132e-10, 3.55048132e-10,
1.60551512e-11, 1.60551512e-11, 1.60551512e-11, 1.60551512e-11,
6.44443381e-13, 6.44443381e-13, 6.44443381e-13, 6.44443381e-13,
2.27317978e-14, 2.27317978e-14, 2.27317978e-14, 2.27317978e-14,
6.70561366e-16, 6.70561366e-16, 6.70561366e-16, 6.70561366e-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.15180945e-08, 6.15180945e-08, 6.15180945e-08, 6.15180945e-08,
3.59623291e-09, 3.59623291e-09, 3.59623291e-09, 3.59623291e-09,
1.92933376e-10, 1.92933376e-10, 1.92933376e-10, 1.92933376e-10,
9.40775477e-12, 9.40775477e-12, 9.40775477e-12, 9.40775477e-12,
4.13524220e-13, 4.13524220e-13, 4.13524220e-13, 4.13524220e-13,
1.62476308e-14, 1.62476308e-14, 1.62476308e-14, 1.62476308e-14,
5.50769866e-16, 5.50769866e-16, 5.50769866e-16, 5.50769866e-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.96179807e-08, 2.96179807e-08, 2.96179807e-08, 2.96179807e-08,
1.79683459e-09, 1.79683459e-09, 1.79683459e-09, 1.79683459e-09,
1.01205787e-10, 1.01205787e-10, 1.01205787e-10, 1.01205787e-10,
5.24433457e-12, 5.24433457e-12, 5.24433457e-12, 5.24433457e-12,
2.48198967e-13, 2.48198967e-13, 2.48198967e-13, 2.48198967e-13,
1.06051291e-14, 1.06051291e-14, 1.06051291e-14, 1.06051291e-14,
3.76402908e-16, 3.76402908e-16, 3.76402908e-16, 3.76402908e-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.82092688e-10, 8.82092688e-10, 8.82092688e-10, 8.82092688e-10,
5.16972571e-11, 5.16972571e-11, 5.16972571e-11, 5.16972571e-11,
2.81591800e-12, 2.81591800e-12, 2.81591800e-12, 2.81591800e-12,
1.41489325e-13, 1.41489325e-13, 1.41489325e-13, 1.41489325e-13,
6.49453029e-15, 6.49453029e-15, 6.49453029e-15, 6.49453029e-15,
2.36749553e-16, 2.36749553e-16, 2.36749553e-16, 2.36749553e-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.66943139e-09, 6.66943139e-09, 6.66943139e-09, 6.66943139e-09,
4.27344816e-10, 4.27344816e-10, 4.27344816e-10, 4.27344816e-10,
2.58814650e-11, 2.58814650e-11, 2.58814650e-11, 2.58814650e-11,
1.46930810e-12, 1.46930810e-12, 1.46930810e-12, 1.46930810e-12,
7.76492225e-14, 7.76492225e-14, 7.76492225e-14, 7.76492225e-14,
3.73743999e-15, 3.73743999e-15, 3.73743999e-15, 3.73743999e-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.60110800e-08, 4.60110800e-08, 4.60110800e-08, 4.60110800e-08,
3.13257582e-09, 3.13257582e-09, 3.13257582e-09, 3.13257582e-09,
2.04833964e-10, 2.04833964e-10, 2.04833964e-10, 2.04833964e-10,
1.27490295e-11, 1.27490295e-11, 1.27490295e-11, 1.27490295e-11,
7.49470668e-13, 7.49470668e-13, 7.49470668e-13, 7.49470668e-13,
4.12681631e-14, 4.12681631e-14, 4.12681631e-14, 4.12681631e-14,
2.08559499e-15, 2.08559499e-15, 2.08559499e-15, 2.08559499e-15,
5.60541096e-17, 5.60541096e-17, 5.60541096e-17, 5.60541096e-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.12578536e-08, 2.12578536e-08, 2.12578536e-08, 2.12578536e-08,
1.46423022e-09, 1.46423022e-09, 1.46423022e-09, 1.46423022e-09,
9.73780648e-11, 9.73780648e-11, 9.73780648e-11, 9.73780648e-11,
6.20166085e-12, 6.20166085e-12, 6.20166085e-12, 6.20166085e-12,
3.75376076e-13, 3.75376076e-13, 3.75376076e-13, 3.75376076e-13,
2.14217464e-14, 2.14217464e-14, 2.14217464e-14, 2.14217464e-14,
1.09531230e-15, 1.09531230e-15, 1.09531230e-15, 1.09531230e-15,
2.33215395e-17, 2.33215395e-17, 2.33215395e-17, 2.33215395e-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.37703295e-07, 1.37703295e-07, 1.37703295e-07, 1.37703295e-07,
9.80046712e-09, 9.80046712e-09, 9.80046712e-09, 9.80046712e-09,
6.81680669e-10, 6.81680669e-10, 6.81680669e-10, 6.81680669e-10,
4.59859280e-11, 4.59859280e-11, 4.59859280e-11, 4.59859280e-11,
2.98608780e-12, 2.98608780e-12, 2.98608780e-12, 2.98608780e-12,
1.85261212e-13, 1.85261212e-13, 1.85261212e-13, 1.85261212e-13,
1.08397957e-14, 1.08397957e-14, 1.08397957e-14, 1.08397957e-14,
6.03543724e-16, 6.03543724e-16, 6.03543724e-16, 6.03543724e-16,
1.12027689e-17, 1.12027689e-17, 1.12027689e-17, 1.12027689e-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.30649884e-08, 6.30649884e-08, 6.30649884e-08, 6.30649884e-08,
4.51037174e-09, 4.51037174e-09, 4.51037174e-09, 4.51037174e-09,
3.16293220e-10, 3.16293220e-10, 3.16293220e-10, 3.16293220e-10,
2.15961451e-11, 2.15961451e-11, 2.15961451e-11, 2.15961451e-11,
1.42563768e-12, 1.42563768e-12, 1.42563768e-12, 1.42563768e-12,
9.02782921e-14, 9.02782921e-14, 9.02782921e-14, 9.02782921e-14,
5.45488413e-15, 5.45488413e-15, 5.45488413e-15, 5.45488413e-15,
3.24213061e-16, 3.24213061e-16, 3.24213061e-16, 3.24213061e-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.88737198e-08, 2.88737198e-08, 2.88737198e-08, 2.88737198e-08,
2.07323027e-09, 2.07323027e-09, 2.07323027e-09, 2.07323027e-09,
1.46378130e-10, 1.46378130e-10, 1.46378130e-10, 1.46378130e-10,
1.00972901e-11, 1.00972901e-11, 1.00972901e-11, 1.00972901e-11,
6.75936379e-13, 6.75936379e-13, 6.75936379e-13, 6.75936379e-13,
4.36475341e-14, 4.36475341e-14, 4.36475341e-14, 4.36475341e-14,
2.74911817e-15, 2.74911817e-15, 2.74911817e-15, 2.74911817e-15,
1.27642190e-16, 1.27642190e-16, 1.27642190e-16, 1.27642190e-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.32143977e-08, 1.32143977e-08, 1.32143977e-08, 1.32143977e-08,
9.51971412e-10, 9.51971412e-10, 9.51971412e-10, 9.51971412e-10,
6.75953534e-11, 6.75953534e-11, 6.75953534e-11, 6.75953534e-11,
4.70331966e-12, 4.70331966e-12, 4.70331966e-12, 4.70331966e-12,
3.18764803e-13, 3.18764803e-13, 3.18764803e-13, 3.18764803e-13,
2.09494671e-14, 2.09494671e-14, 2.09494671e-14, 2.09494671e-14,
1.31743856e-15, 1.31743856e-15, 1.31743856e-15, 1.31743856e-15,
4.60574943e-17, 4.60574943e-17, 4.60574943e-17, 4.60574943e-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.29963614e-08, 8.29963614e-08, 8.29963614e-08, 8.29963614e-08,
6.04553776e-09, 6.04553776e-09, 6.04553776e-09, 6.04553776e-09,
4.36752280e-10, 4.36752280e-10, 4.36752280e-10, 4.36752280e-10,
3.11603662e-11, 3.11603662e-11, 3.11603662e-11, 3.11603662e-11,
2.18421658e-12, 2.18421658e-12, 2.18421658e-12, 2.18421658e-12,
1.49587534e-13, 1.49587534e-13, 1.49587534e-13, 1.49587534e-13,
9.97191630e-15, 9.97191630e-15, 9.97191630e-15, 9.97191630e-15,
6.42162011e-16, 6.42162011e-16, 6.42162011e-16, 6.42162011e-16,
1.13635599e-17, 1.13635599e-17, 1.13635599e-17, 1.13635599e-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.79012478e-08, 3.79012478e-08, 3.79012478e-08, 3.79012478e-08,
2.76477953e-09, 2.76477953e-09, 2.76477953e-09, 2.76477953e-09,
2.00229803e-10, 2.00229803e-10, 2.00229803e-10, 2.00229803e-10,
1.43438806e-11, 1.43438806e-11, 1.43438806e-11, 1.43438806e-11,
1.01179628e-12, 1.01179628e-12, 1.01179628e-12, 1.01179628e-12,
6.99433569e-14, 6.99433569e-14, 6.99433569e-14, 6.99433569e-14,
4.71153508e-15, 4.71153508e-15, 4.71153508e-15, 4.71153508e-15,
2.80240614e-16, 2.80240614e-16, 2.80240614e-16, 2.80240614e-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.26389124e-09, 1.26389124e-09, 1.26389124e-09, 1.26389124e-09,
9.17314330e-11, 9.17314330e-11, 9.17314330e-11, 9.17314330e-11,
6.59452768e-12, 6.59452768e-12, 6.59452768e-12, 6.59452768e-12,
4.67741393e-13, 4.67741393e-13, 4.67741393e-13, 4.67741393e-13,
3.25602353e-14, 3.25602353e-14, 3.25602353e-14, 3.25602353e-14,
2.15135027e-15, 2.15135027e-15, 2.15135027e-15, 2.15135027e-15,
1.39376504e-16, 1.39376504e-16, 1.39376504e-16, 1.39376504e-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.89913838e-09, 7.89913838e-09, 7.89913838e-09, 7.89913838e-09,
5.77602086e-10, 5.77602086e-10, 5.77602086e-10, 5.77602086e-10,
4.20008868e-11, 4.20008868e-11, 4.20008868e-11, 4.20008868e-11,
3.02873837e-12, 3.02873837e-12, 3.02873837e-12, 3.02873837e-12,
2.15831963e-13, 2.15831963e-13, 2.15831963e-13, 2.15831963e-13,
1.50295915e-14, 1.50295915e-14, 1.50295915e-14, 1.50295915e-14,
1.04120098e-15, 1.04120098e-15, 1.04120098e-15, 1.04120098e-15,
4.63447807e-17, 4.63447807e-17, 4.63447807e-17, 4.63447807e-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.90964693e-08, 4.90964693e-08, 4.90964693e-08, 4.90964693e-08,
3.60523555e-09, 3.60523555e-09, 3.60523555e-09, 3.60523555e-09,
2.63885894e-10, 2.63885894e-10, 2.63885894e-10, 2.63885894e-10,
1.92205671e-11, 1.92205671e-11, 1.92205671e-11, 1.92205671e-11,
1.38969071e-12, 1.38969071e-12, 1.38969071e-12, 1.38969071e-12,
9.92889369e-14, 9.92889369e-14, 9.92889369e-14, 9.92889369e-14,
7.02190885e-15, 7.02190885e-15, 7.02190885e-15, 7.02190885e-15,
5.03109752e-16, 5.03109752e-16, 5.03109752e-16, 5.03109752e-16,
1.14197131e-17, 1.14197131e-17, 1.14197131e-17, 1.14197131e-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.11419587e-06, 4.11419587e-06, 4.11419587e-06, 4.11419587e-06,
3.03837918e-07, 3.03837918e-07, 3.03837918e-07, 3.03837918e-07,
2.23849015e-08, 2.23849015e-08, 2.23849015e-08, 2.23849015e-08,
1.64507685e-09, 1.64507685e-09, 1.64507685e-09, 1.64507685e-09,
1.20527947e-10, 1.20527947e-10, 1.20527947e-10, 1.20527947e-10,
8.79172842e-12, 8.79172842e-12, 8.79172842e-12, 8.79172842e-12,
6.36977609e-13, 6.36977609e-13, 6.36977609e-13, 6.36977609e-13,
4.57751494e-14, 4.57751494e-14, 4.57751494e-14, 4.57751494e-14,
3.29081172e-15, 3.29081172e-15, 3.29081172e-15, 3.29081172e-15,
1.98065885e-16, 1.98065885e-16, 1.98065885e-16, 1.98065885e-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.38344703e-07, 1.38344703e-07, 1.38344703e-07, 1.38344703e-07,
1.02018843e-08, 1.02018843e-08, 1.02018843e-08, 1.02018843e-08,
7.50419965e-10, 7.50419965e-10, 7.50419965e-10, 7.50419965e-10,
5.50339657e-11, 5.50339657e-11, 5.50339657e-11, 5.50339657e-11,
4.01955450e-12, 4.01955450e-12, 4.01955450e-12, 4.01955450e-12,
2.91902480e-13, 2.91902480e-13, 2.91902480e-13, 2.91902480e-13,
2.12011466e-14, 2.12011466e-14, 2.12011466e-14, 2.12011466e-14,
1.46257755e-15, 1.46257755e-15, 1.46257755e-15, 1.46257755e-15,
5.84103605e-17, 5.84103605e-17, 5.84103605e-17, 5.84103605e-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.29700500e-08, 6.29700500e-08, 6.29700500e-08, 6.29700500e-08,
4.64771792e-09, 4.64771792e-09, 4.64771792e-09, 4.64771792e-09,
3.42187337e-10, 3.42187337e-10, 3.42187337e-10, 3.42187337e-10,
2.51200391e-11, 2.51200391e-11, 2.51200391e-11, 2.51200391e-11,
1.83716918e-12, 1.83716918e-12, 1.83716918e-12, 1.83716918e-12,
1.33864818e-13, 1.33864818e-13, 1.33864818e-13, 1.33864818e-13,
9.58780086e-15, 9.58780086e-15, 9.58780086e-15, 9.58780086e-15,
6.67599382e-16, 6.67599382e-16, 6.67599382e-16, 6.67599382e-16,
1.14274703e-17, 1.14274703e-17, 1.14274703e-17, 1.14274703e-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.86975588e-07, 3.86975588e-07, 3.86975588e-07, 3.86975588e-07,
2.86533267e-08, 2.86533267e-08, 2.86533267e-08, 2.86533267e-08,
2.11667452e-09, 2.11667452e-09, 2.11667452e-09, 2.11667452e-09,
1.55981240e-10, 1.55981240e-10, 1.55981240e-10, 1.55981240e-10,
1.14621089e-11, 1.14621089e-11, 1.14621089e-11, 1.14621089e-11,
8.39520289e-13, 8.39520289e-13, 8.39520289e-13, 8.39520289e-13,
6.10777554e-14, 6.10777554e-14, 6.10777554e-14, 6.10777554e-14,
4.42707683e-15, 4.42707683e-15, 4.42707683e-15, 4.42707683e-15,
2.92606480e-16, 2.92606480e-16, 2.92606480e-16, 2.92606480e-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.30328077e-08, 1.30328077e-08, 1.30328077e-08, 1.30328077e-08,
9.63639604e-10, 9.63639604e-10, 9.63639604e-10, 9.63639604e-10,
7.10765283e-11, 7.10765283e-11, 7.10765283e-11, 7.10765283e-11,
5.22828506e-12, 5.22828506e-12, 5.22828506e-12, 5.22828506e-12,
3.83211940e-13, 3.83211940e-13, 3.83211940e-13, 3.83211940e-13,
2.79714432e-14, 2.79714432e-14, 2.79714432e-14, 2.79714432e-14,
2.00239688e-15, 2.00239688e-15, 2.00239688e-15, 2.00239688e-15,
1.39577301e-16, 1.39577301e-16, 1.39577301e-16, 1.39577301e-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.98515069e-08, 7.98515069e-08, 7.98515069e-08, 7.98515069e-08,
5.92527084e-09, 5.92527084e-09, 5.92527084e-09, 5.92527084e-09,
4.38545977e-10, 4.38545977e-10, 4.38545977e-10, 4.38545977e-10,
3.23766452e-11, 3.23766452e-11, 3.23766452e-11, 3.23766452e-11,
2.38373999e-12, 2.38373999e-12, 2.38373999e-12, 2.38373999e-12,
1.75028789e-13, 1.75028789e-13, 1.75028789e-13, 1.75028789e-13,
1.27892735e-14, 1.27892735e-14, 1.27892735e-14, 1.27892735e-14,
8.88419813e-16, 8.88419813e-16, 8.88419813e-16, 8.88419813e-16,
3.55286300e-17, 3.55286300e-17, 3.55286300e-17, 3.55286300e-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.69260275e-09, 2.69260275e-09, 2.69260275e-09, 2.69260275e-09,
1.99494344e-10, 1.99494344e-10, 1.99494344e-10, 1.99494344e-10,
1.47424198e-11, 1.47424198e-11, 1.47424198e-11, 1.47424198e-11,
1.08665588e-12, 1.08665588e-12, 1.08665588e-12, 1.08665588e-12,
7.98900551e-14, 7.98900551e-14, 7.98900551e-14, 7.98900551e-14,
5.74543687e-15, 5.74543687e-15, 5.74543687e-15, 5.74543687e-15,
3.74246134e-16, 3.74246134e-16, 3.74246134e-16, 3.74246134e-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]), '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.64480943e-08, 1.64480943e-08, 1.64480943e-08, 1.64480943e-08,
1.22307281e-09, 1.22307281e-09, 1.22307281e-09, 1.22307281e-09,
9.07116444e-11, 9.07116444e-11, 9.07116444e-11, 9.07116444e-11,
6.71040198e-12, 6.71040198e-12, 6.71040198e-12, 6.71040198e-12,
4.95138882e-13, 4.95138882e-13, 4.95138882e-13, 4.95138882e-13,
3.63525561e-14, 3.63525561e-14, 3.63525561e-14, 3.63525561e-14,
2.57574053e-15, 2.57574053e-15, 2.57574053e-15, 2.57574053e-15,
1.50998902e-16, 1.50998902e-16, 1.50998902e-16, 1.50998902e-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.99987459e-08, 9.99987459e-08, 9.99987459e-08, 9.99987459e-08,
7.46125181e-09, 7.46125181e-09, 7.46125181e-09, 7.46125181e-09,
5.55345414e-10, 5.55345414e-10, 5.55345414e-10, 5.55345414e-10,
4.12299497e-11, 4.12299497e-11, 4.12299497e-11, 4.12299497e-11,
3.05317647e-12, 3.05317647e-12, 3.05317647e-12, 3.05317647e-12,
2.25404963e-13, 2.25404963e-13, 2.25404963e-13, 2.25404963e-13,
1.64906646e-14, 1.64906646e-14, 1.64906646e-14, 1.64906646e-14,
1.14601822e-15, 1.14601822e-15, 1.14601822e-15, 1.14601822e-15,
4.62768323e-17, 4.62768323e-17, 4.62768323e-17, 4.62768323e-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.38340688e-09, 3.38340688e-09, 3.38340688e-09, 3.38340688e-09,
2.52067818e-10, 2.52067818e-10, 2.52067818e-10, 2.52067818e-10,
1.87324876e-11, 1.87324876e-11, 1.87324876e-11, 1.87324876e-11,
1.38852565e-12, 1.38852565e-12, 1.38852565e-12, 1.38852565e-12,
1.02459592e-13, 1.02459592e-13, 1.02459592e-13, 1.02459592e-13,
7.43087974e-15, 7.43087974e-15, 7.43087974e-15, 7.43087974e-15,
5.49179378e-16, 5.49179378e-16, 5.49179378e-16, 5.49179378e-16,
1.14063637e-17, 1.14063637e-17, 1.14063637e-17, 1.14063637e-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.53361064e-09, 1.53361064e-09, 1.53361064e-09, 1.53361064e-09,
1.14369026e-10, 1.14369026e-10, 1.14369026e-10, 1.14369026e-10,
8.50759361e-12, 8.50759361e-12, 8.50759361e-12, 8.50759361e-12,
6.31019787e-13, 6.31019787e-13, 6.31019787e-13, 6.31019787e-13,
4.65731418e-14, 4.65731418e-14, 4.65731418e-14, 4.65731418e-14,
3.41568785e-15, 3.41568785e-15, 3.41568785e-15, 3.41568785e-15,
2.09837436e-16, 2.09837436e-16, 2.09837436e-16, 2.09837436e-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.28475936e-09, 9.28475936e-09, 9.28475936e-09, 9.28475936e-09,
6.94864882e-10, 6.94864882e-10, 6.94864882e-10, 6.94864882e-10,
5.18713076e-11, 5.18713076e-11, 5.18713076e-11, 5.18713076e-11,
3.86215245e-12, 3.86215245e-12, 3.86215245e-12, 3.86215245e-12,
2.86729339e-13, 2.86729339e-13, 2.86729339e-13, 2.86729339e-13,
2.12263905e-14, 2.12263905e-14, 2.12263905e-14, 2.12263905e-14,
1.50770497e-15, 1.50770497e-15, 1.50770497e-15, 1.50770497e-15,
5.83240862e-17, 5.83240862e-17, 5.83240862e-17, 5.83240862e-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.43754126e-07, 7.43754126e-07, 7.43754126e-07, 7.43754126e-07,
5.59602798e-08, 5.59602798e-08, 5.59602798e-08, 5.59602798e-08,
4.20149900e-09, 4.20149900e-09, 4.20149900e-09, 4.20149900e-09,
3.14719618e-10, 3.14719618e-10, 3.14719618e-10, 3.14719618e-10,
2.35163843e-11, 2.35163843e-11, 2.35163843e-11, 2.35163843e-11,
1.75272451e-12, 1.75272451e-12, 1.75272451e-12, 1.75272451e-12,
1.30268527e-13, 1.30268527e-13, 1.30268527e-13, 1.30268527e-13,
9.53228040e-15, 9.53228040e-15, 9.53228040e-15, 9.53228040e-15,
6.66890320e-16, 6.66890320e-16, 6.66890320e-16, 6.66890320e-16,
1.13902281e-17, 1.13902281e-17, 1.13902281e-17, 1.13902281e-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.52955864e-08, 2.52955864e-08, 2.52955864e-08, 2.52955864e-08,
1.90071382e-09, 1.90071382e-09, 1.90071382e-09, 1.90071382e-09,
1.42497162e-10, 1.42497162e-10, 1.42497162e-10, 1.42497162e-10,
1.06576407e-11, 1.06576407e-11, 1.06576407e-11, 1.06576407e-11,
7.95082976e-13, 7.95082976e-13, 7.95082976e-13, 7.95082976e-13,
5.89524579e-14, 5.89524579e-14, 5.89524579e-14, 5.89524579e-14,
4.35118931e-15, 4.35118931e-15, 4.35118931e-15, 4.35118931e-15,
2.92221983e-16, 2.92221983e-16, 2.92221983e-16, 2.92221983e-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.51640691e-07, 1.51640691e-07, 1.51640691e-07, 1.51640691e-07,
1.14299112e-08, 1.14299112e-08, 1.14299112e-08, 1.14299112e-08,
8.59588889e-10, 8.59588889e-10, 8.59588889e-10, 8.59588889e-10,
6.44986576e-11, 6.44986576e-11, 6.44986576e-11, 6.44986576e-11,
4.82825781e-12, 4.82825781e-12, 4.82825781e-12, 4.82825781e-12,
3.60293269e-13, 3.60293269e-13, 3.60293269e-13, 3.60293269e-13,
2.67754040e-14, 2.67754040e-14, 2.67754040e-14, 2.67754040e-14,
1.97749692e-15, 1.97749692e-15, 1.97749692e-15, 1.97749692e-15,
1.39345500e-16, 1.39345500e-16, 1.39345500e-16, 1.39345500e-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.00204016e-08, 1.00204016e-08, 1.00204016e-08, 1.00204016e-08,
7.48783684e-10, 7.48783684e-10, 7.48783684e-10, 7.48783684e-10,
5.58270908e-11, 5.58270908e-11, 5.58270908e-11, 5.58270908e-11,
4.15152045e-12, 4.15152045e-12, 4.15152045e-12, 4.15152045e-12,
3.07797034e-13, 3.07797034e-13, 3.07797034e-13, 3.07797034e-13,
2.26911152e-14, 2.26911152e-14, 2.26911152e-14, 2.26911152e-14,
1.60795828e-15, 1.60795828e-15, 1.60795828e-15, 1.60795828e-15,
8.79856092e-17, 8.79856092e-17, 8.79856092e-17, 8.79856092e-17,
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.42183401e-07, 1.42183401e-07, 1.42183401e-07, 1.42183401e-07,
1.05285749e-08, 1.05285749e-08, 1.05285749e-08, 1.05285749e-08,
7.77701488e-10, 7.77701488e-10, 7.77701488e-10, 7.77701488e-10,
5.73010457e-11, 5.73010457e-11, 5.73010457e-11, 5.73010457e-11,
4.21117927e-12, 4.21117927e-12, 4.21117927e-12, 4.21117927e-12,
3.08671287e-13, 3.08671287e-13, 3.08671287e-13, 3.08671287e-13,
2.24554100e-14, 2.24554100e-14, 2.24554100e-14, 2.24554100e-14,
1.59293686e-15, 1.59293686e-15, 1.59293686e-15, 1.59293686e-15,
1.02454422e-16, 1.02454422e-16, 1.02454422e-16, 1.02454422e-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.00397592e-09, 1.00397592e-09, 1.00397592e-09, 1.00397592e-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.01915978e-08, 8.01915978e-08, 8.01915978e-08, 8.01915978e-08,
1.84159268e-09, 1.84159268e-09, 1.84159268e-09, 1.84159268e-09,
3.02840271e-11, 3.02840271e-11, 3.02840271e-11, 3.02840271e-11,
3.31064432e-13, 3.31064432e-13, 3.31064432e-13, 3.31064432e-13,
2.09343286e-15, 2.09343286e-15, 2.09343286e-15, 2.09343286e-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.25358487e-08, 6.25358487e-08, 6.25358487e-08, 6.25358487e-08,
1.91748501e-09, 1.91748501e-09, 1.91748501e-09, 1.91748501e-09,
4.62606718e-11, 4.62606718e-11, 4.62606718e-11, 4.62606718e-11,
8.51280219e-13, 8.51280219e-13, 8.51280219e-13, 8.51280219e-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.51483227e-09, 1.51483227e-09, 1.51483227e-09, 1.51483227e-09,
4.65132240e-11, 4.65132240e-11, 4.65132240e-11, 4.65132240e-11,
1.16292780e-12, 1.16292780e-12, 1.16292780e-12, 1.16292780e-12,
2.31305668e-14, 2.31305668e-14, 2.31305668e-14, 2.31305668e-14,
3.58178583e-16, 3.58178583e-16, 3.58178583e-16, 3.58178583e-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.02173680e-09, 1.02173680e-09, 1.02173680e-09, 1.02173680e-09,
3.71041410e-11, 3.71041410e-11, 3.71041410e-11, 3.71041410e-11,
1.14136465e-12, 1.14136465e-12, 1.14136465e-12, 1.14136465e-12,
2.92663456e-14, 2.92663456e-14, 2.92663456e-14, 2.92663456e-14,
6.09300121e-16, 6.09300121e-16, 6.09300121e-16, 6.09300121e-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.23193622e-10, 6.23193622e-10, 6.23193622e-10, 6.23193622e-10,
2.56186646e-11, 2.56186646e-11, 2.56186646e-11, 2.56186646e-11,
9.16357815e-13, 9.16357815e-13, 9.16357815e-13, 9.16357815e-13,
2.82083808e-14, 2.82083808e-14, 2.82083808e-14, 2.82083808e-14,
7.14716636e-16, 7.14716636e-16, 7.14716636e-16, 7.14716636e-16,
1.99155595e-17, 1.99155595e-17, 1.99155595e-17, 1.99155595e-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]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 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.03125044e-09, 7.03125044e-09, 7.03125044e-09, 7.03125044e-09,
3.55048132e-10, 3.55048132e-10, 3.55048132e-10, 3.55048132e-10,
1.60551512e-11, 1.60551512e-11, 1.60551512e-11, 1.60551512e-11,
6.44443381e-13, 6.44443381e-13, 6.44443381e-13, 6.44443381e-13,
2.27317978e-14, 2.27317978e-14, 2.27317978e-14, 2.27317978e-14,
6.70561366e-16, 6.70561366e-16, 6.70561366e-16, 6.70561366e-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.15180945e-08, 6.15180945e-08, 6.15180945e-08, 6.15180945e-08,
3.59623291e-09, 3.59623291e-09, 3.59623291e-09, 3.59623291e-09,
1.92933376e-10, 1.92933376e-10, 1.92933376e-10, 1.92933376e-10,
9.40775477e-12, 9.40775477e-12, 9.40775477e-12, 9.40775477e-12,
4.13524220e-13, 4.13524220e-13, 4.13524220e-13, 4.13524220e-13,
1.62476308e-14, 1.62476308e-14, 1.62476308e-14, 1.62476308e-14,
5.50769866e-16, 5.50769866e-16, 5.50769866e-16, 5.50769866e-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.96179807e-08, 2.96179807e-08, 2.96179807e-08, 2.96179807e-08,
1.79683459e-09, 1.79683459e-09, 1.79683459e-09, 1.79683459e-09,
1.01205787e-10, 1.01205787e-10, 1.01205787e-10, 1.01205787e-10,
5.24433457e-12, 5.24433457e-12, 5.24433457e-12, 5.24433457e-12,
2.48198967e-13, 2.48198967e-13, 2.48198967e-13, 2.48198967e-13,
1.06051291e-14, 1.06051291e-14, 1.06051291e-14, 1.06051291e-14,
3.76402908e-16, 3.76402908e-16, 3.76402908e-16, 3.76402908e-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.82092688e-10, 8.82092688e-10, 8.82092688e-10, 8.82092688e-10,
5.16972571e-11, 5.16972571e-11, 5.16972571e-11, 5.16972571e-11,
2.81591800e-12, 2.81591800e-12, 2.81591800e-12, 2.81591800e-12,
1.41489325e-13, 1.41489325e-13, 1.41489325e-13, 1.41489325e-13,
6.49453029e-15, 6.49453029e-15, 6.49453029e-15, 6.49453029e-15,
2.36749553e-16, 2.36749553e-16, 2.36749553e-16, 2.36749553e-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.66943139e-09, 6.66943139e-09, 6.66943139e-09, 6.66943139e-09,
4.27344816e-10, 4.27344816e-10, 4.27344816e-10, 4.27344816e-10,
2.58814650e-11, 2.58814650e-11, 2.58814650e-11, 2.58814650e-11,
1.46930810e-12, 1.46930810e-12, 1.46930810e-12, 1.46930810e-12,
7.76492225e-14, 7.76492225e-14, 7.76492225e-14, 7.76492225e-14,
3.73743999e-15, 3.73743999e-15, 3.73743999e-15, 3.73743999e-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.60110800e-08, 4.60110800e-08, 4.60110800e-08, 4.60110800e-08,
3.13257582e-09, 3.13257582e-09, 3.13257582e-09, 3.13257582e-09,
2.04833964e-10, 2.04833964e-10, 2.04833964e-10, 2.04833964e-10,
1.27490295e-11, 1.27490295e-11, 1.27490295e-11, 1.27490295e-11,
7.49470668e-13, 7.49470668e-13, 7.49470668e-13, 7.49470668e-13,
4.12681631e-14, 4.12681631e-14, 4.12681631e-14, 4.12681631e-14,
2.08559499e-15, 2.08559499e-15, 2.08559499e-15, 2.08559499e-15,
5.60541096e-17, 5.60541096e-17, 5.60541096e-17, 5.60541096e-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.12578536e-08, 2.12578536e-08, 2.12578536e-08, 2.12578536e-08,
1.46423022e-09, 1.46423022e-09, 1.46423022e-09, 1.46423022e-09,
9.73780648e-11, 9.73780648e-11, 9.73780648e-11, 9.73780648e-11,
6.20166085e-12, 6.20166085e-12, 6.20166085e-12, 6.20166085e-12,
3.75376076e-13, 3.75376076e-13, 3.75376076e-13, 3.75376076e-13,
2.14217464e-14, 2.14217464e-14, 2.14217464e-14, 2.14217464e-14,
1.09531230e-15, 1.09531230e-15, 1.09531230e-15, 1.09531230e-15,
2.33215395e-17, 2.33215395e-17, 2.33215395e-17, 2.33215395e-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.37703295e-07, 1.37703295e-07, 1.37703295e-07, 1.37703295e-07,
9.80046712e-09, 9.80046712e-09, 9.80046712e-09, 9.80046712e-09,
6.81680669e-10, 6.81680669e-10, 6.81680669e-10, 6.81680669e-10,
4.59859280e-11, 4.59859280e-11, 4.59859280e-11, 4.59859280e-11,
2.98608780e-12, 2.98608780e-12, 2.98608780e-12, 2.98608780e-12,
1.85261212e-13, 1.85261212e-13, 1.85261212e-13, 1.85261212e-13,
1.08397957e-14, 1.08397957e-14, 1.08397957e-14, 1.08397957e-14,
6.03543724e-16, 6.03543724e-16, 6.03543724e-16, 6.03543724e-16,
1.12027689e-17, 1.12027689e-17, 1.12027689e-17, 1.12027689e-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.30649884e-08, 6.30649884e-08, 6.30649884e-08, 6.30649884e-08,
4.51037174e-09, 4.51037174e-09, 4.51037174e-09, 4.51037174e-09,
3.16293220e-10, 3.16293220e-10, 3.16293220e-10, 3.16293220e-10,
2.15961451e-11, 2.15961451e-11, 2.15961451e-11, 2.15961451e-11,
1.42563768e-12, 1.42563768e-12, 1.42563768e-12, 1.42563768e-12,
9.02782921e-14, 9.02782921e-14, 9.02782921e-14, 9.02782921e-14,
5.45488413e-15, 5.45488413e-15, 5.45488413e-15, 5.45488413e-15,
3.24213061e-16, 3.24213061e-16, 3.24213061e-16, 3.24213061e-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.88737198e-08, 2.88737198e-08, 2.88737198e-08, 2.88737198e-08,
2.07323027e-09, 2.07323027e-09, 2.07323027e-09, 2.07323027e-09,
1.46378130e-10, 1.46378130e-10, 1.46378130e-10, 1.46378130e-10,
1.00972901e-11, 1.00972901e-11, 1.00972901e-11, 1.00972901e-11,
6.75936379e-13, 6.75936379e-13, 6.75936379e-13, 6.75936379e-13,
4.36475341e-14, 4.36475341e-14, 4.36475341e-14, 4.36475341e-14,
2.74911817e-15, 2.74911817e-15, 2.74911817e-15, 2.74911817e-15,
1.27642190e-16, 1.27642190e-16, 1.27642190e-16, 1.27642190e-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.32143977e-08, 1.32143977e-08, 1.32143977e-08, 1.32143977e-08,
9.51971412e-10, 9.51971412e-10, 9.51971412e-10, 9.51971412e-10,
6.75953534e-11, 6.75953534e-11, 6.75953534e-11, 6.75953534e-11,
4.70331966e-12, 4.70331966e-12, 4.70331966e-12, 4.70331966e-12,
3.18764803e-13, 3.18764803e-13, 3.18764803e-13, 3.18764803e-13,
2.09494671e-14, 2.09494671e-14, 2.09494671e-14, 2.09494671e-14,
1.31743856e-15, 1.31743856e-15, 1.31743856e-15, 1.31743856e-15,
4.60574943e-17, 4.60574943e-17, 4.60574943e-17, 4.60574943e-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.29963614e-08, 8.29963614e-08, 8.29963614e-08, 8.29963614e-08,
6.04553776e-09, 6.04553776e-09, 6.04553776e-09, 6.04553776e-09,
4.36752280e-10, 4.36752280e-10, 4.36752280e-10, 4.36752280e-10,
3.11603662e-11, 3.11603662e-11, 3.11603662e-11, 3.11603662e-11,
2.18421658e-12, 2.18421658e-12, 2.18421658e-12, 2.18421658e-12,
1.49587534e-13, 1.49587534e-13, 1.49587534e-13, 1.49587534e-13,
9.97191630e-15, 9.97191630e-15, 9.97191630e-15, 9.97191630e-15,
6.42162011e-16, 6.42162011e-16, 6.42162011e-16, 6.42162011e-16,
1.13635599e-17, 1.13635599e-17, 1.13635599e-17, 1.13635599e-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.79012478e-08, 3.79012478e-08, 3.79012478e-08, 3.79012478e-08,
2.76477953e-09, 2.76477953e-09, 2.76477953e-09, 2.76477953e-09,
2.00229803e-10, 2.00229803e-10, 2.00229803e-10, 2.00229803e-10,
1.43438806e-11, 1.43438806e-11, 1.43438806e-11, 1.43438806e-11,
1.01179628e-12, 1.01179628e-12, 1.01179628e-12, 1.01179628e-12,
6.99433569e-14, 6.99433569e-14, 6.99433569e-14, 6.99433569e-14,
4.71153508e-15, 4.71153508e-15, 4.71153508e-15, 4.71153508e-15,
2.80240614e-16, 2.80240614e-16, 2.80240614e-16, 2.80240614e-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.26389124e-09, 1.26389124e-09, 1.26389124e-09, 1.26389124e-09,
9.17314330e-11, 9.17314330e-11, 9.17314330e-11, 9.17314330e-11,
6.59452768e-12, 6.59452768e-12, 6.59452768e-12, 6.59452768e-12,
4.67741393e-13, 4.67741393e-13, 4.67741393e-13, 4.67741393e-13,
3.25602353e-14, 3.25602353e-14, 3.25602353e-14, 3.25602353e-14,
2.15135027e-15, 2.15135027e-15, 2.15135027e-15, 2.15135027e-15,
1.39376504e-16, 1.39376504e-16, 1.39376504e-16, 1.39376504e-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.89913838e-09, 7.89913838e-09, 7.89913838e-09, 7.89913838e-09,
5.77602086e-10, 5.77602086e-10, 5.77602086e-10, 5.77602086e-10,
4.20008868e-11, 4.20008868e-11, 4.20008868e-11, 4.20008868e-11,
3.02873837e-12, 3.02873837e-12, 3.02873837e-12, 3.02873837e-12,
2.15831963e-13, 2.15831963e-13, 2.15831963e-13, 2.15831963e-13,
1.50295915e-14, 1.50295915e-14, 1.50295915e-14, 1.50295915e-14,
1.04120098e-15, 1.04120098e-15, 1.04120098e-15, 1.04120098e-15,
4.63447807e-17, 4.63447807e-17, 4.63447807e-17, 4.63447807e-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.90964693e-08, 4.90964693e-08, 4.90964693e-08, 4.90964693e-08,
3.60523555e-09, 3.60523555e-09, 3.60523555e-09, 3.60523555e-09,
2.63885894e-10, 2.63885894e-10, 2.63885894e-10, 2.63885894e-10,
1.92205671e-11, 1.92205671e-11, 1.92205671e-11, 1.92205671e-11,
1.38969071e-12, 1.38969071e-12, 1.38969071e-12, 1.38969071e-12,
9.92889369e-14, 9.92889369e-14, 9.92889369e-14, 9.92889369e-14,
7.02190885e-15, 7.02190885e-15, 7.02190885e-15, 7.02190885e-15,
5.03109752e-16, 5.03109752e-16, 5.03109752e-16, 5.03109752e-16,
1.14197131e-17, 1.14197131e-17, 1.14197131e-17, 1.14197131e-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.11419587e-06, 4.11419587e-06, 4.11419587e-06, 4.11419587e-06,
3.03837918e-07, 3.03837918e-07, 3.03837918e-07, 3.03837918e-07,
2.23849015e-08, 2.23849015e-08, 2.23849015e-08, 2.23849015e-08,
1.64507685e-09, 1.64507685e-09, 1.64507685e-09, 1.64507685e-09,
1.20527947e-10, 1.20527947e-10, 1.20527947e-10, 1.20527947e-10,
8.79172842e-12, 8.79172842e-12, 8.79172842e-12, 8.79172842e-12,
6.36977609e-13, 6.36977609e-13, 6.36977609e-13, 6.36977609e-13,
4.57751494e-14, 4.57751494e-14, 4.57751494e-14, 4.57751494e-14,
3.29081172e-15, 3.29081172e-15, 3.29081172e-15, 3.29081172e-15,
1.98065885e-16, 1.98065885e-16, 1.98065885e-16, 1.98065885e-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.38344703e-07, 1.38344703e-07, 1.38344703e-07, 1.38344703e-07,
1.02018843e-08, 1.02018843e-08, 1.02018843e-08, 1.02018843e-08,
7.50419965e-10, 7.50419965e-10, 7.50419965e-10, 7.50419965e-10,
5.50339657e-11, 5.50339657e-11, 5.50339657e-11, 5.50339657e-11,
4.01955450e-12, 4.01955450e-12, 4.01955450e-12, 4.01955450e-12,
2.91902480e-13, 2.91902480e-13, 2.91902480e-13, 2.91902480e-13,
2.12011466e-14, 2.12011466e-14, 2.12011466e-14, 2.12011466e-14,
1.46257755e-15, 1.46257755e-15, 1.46257755e-15, 1.46257755e-15,
5.84103605e-17, 5.84103605e-17, 5.84103605e-17, 5.84103605e-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.29700500e-08, 6.29700500e-08, 6.29700500e-08, 6.29700500e-08,
4.64771792e-09, 4.64771792e-09, 4.64771792e-09, 4.64771792e-09,
3.42187337e-10, 3.42187337e-10, 3.42187337e-10, 3.42187337e-10,
2.51200391e-11, 2.51200391e-11, 2.51200391e-11, 2.51200391e-11,
1.83716918e-12, 1.83716918e-12, 1.83716918e-12, 1.83716918e-12,
1.33864818e-13, 1.33864818e-13, 1.33864818e-13, 1.33864818e-13,
9.58780086e-15, 9.58780086e-15, 9.58780086e-15, 9.58780086e-15,
6.67599382e-16, 6.67599382e-16, 6.67599382e-16, 6.67599382e-16,
1.14274703e-17, 1.14274703e-17, 1.14274703e-17, 1.14274703e-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.86975588e-07, 3.86975588e-07, 3.86975588e-07, 3.86975588e-07,
2.86533267e-08, 2.86533267e-08, 2.86533267e-08, 2.86533267e-08,
2.11667452e-09, 2.11667452e-09, 2.11667452e-09, 2.11667452e-09,
1.55981240e-10, 1.55981240e-10, 1.55981240e-10, 1.55981240e-10,
1.14621089e-11, 1.14621089e-11, 1.14621089e-11, 1.14621089e-11,
8.39520289e-13, 8.39520289e-13, 8.39520289e-13, 8.39520289e-13,
6.10777554e-14, 6.10777554e-14, 6.10777554e-14, 6.10777554e-14,
4.42707683e-15, 4.42707683e-15, 4.42707683e-15, 4.42707683e-15,
2.92606480e-16, 2.92606480e-16, 2.92606480e-16, 2.92606480e-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.30328077e-08, 1.30328077e-08, 1.30328077e-08, 1.30328077e-08,
9.63639604e-10, 9.63639604e-10, 9.63639604e-10, 9.63639604e-10,
7.10765283e-11, 7.10765283e-11, 7.10765283e-11, 7.10765283e-11,
5.22828506e-12, 5.22828506e-12, 5.22828506e-12, 5.22828506e-12,
3.83211940e-13, 3.83211940e-13, 3.83211940e-13, 3.83211940e-13,
2.79714432e-14, 2.79714432e-14, 2.79714432e-14, 2.79714432e-14,
2.00239688e-15, 2.00239688e-15, 2.00239688e-15, 2.00239688e-15,
1.39577301e-16, 1.39577301e-16, 1.39577301e-16, 1.39577301e-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.98515069e-08, 7.98515069e-08, 7.98515069e-08, 7.98515069e-08,
5.92527084e-09, 5.92527084e-09, 5.92527084e-09, 5.92527084e-09,
4.38545977e-10, 4.38545977e-10, 4.38545977e-10, 4.38545977e-10,
3.23766452e-11, 3.23766452e-11, 3.23766452e-11, 3.23766452e-11,
2.38373999e-12, 2.38373999e-12, 2.38373999e-12, 2.38373999e-12,
1.75028789e-13, 1.75028789e-13, 1.75028789e-13, 1.75028789e-13,
1.27892735e-14, 1.27892735e-14, 1.27892735e-14, 1.27892735e-14,
8.88419813e-16, 8.88419813e-16, 8.88419813e-16, 8.88419813e-16,
3.55286300e-17, 3.55286300e-17, 3.55286300e-17, 3.55286300e-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.69260275e-09, 2.69260275e-09, 2.69260275e-09, 2.69260275e-09,
1.99494344e-10, 1.99494344e-10, 1.99494344e-10, 1.99494344e-10,
1.47424198e-11, 1.47424198e-11, 1.47424198e-11, 1.47424198e-11,
1.08665588e-12, 1.08665588e-12, 1.08665588e-12, 1.08665588e-12,
7.98900551e-14, 7.98900551e-14, 7.98900551e-14, 7.98900551e-14,
5.74543687e-15, 5.74543687e-15, 5.74543687e-15, 5.74543687e-15,
3.74246134e-16, 3.74246134e-16, 3.74246134e-16, 3.74246134e-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]), '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.64480943e-08, 1.64480943e-08, 1.64480943e-08, 1.64480943e-08,
1.22307281e-09, 1.22307281e-09, 1.22307281e-09, 1.22307281e-09,
9.07116444e-11, 9.07116444e-11, 9.07116444e-11, 9.07116444e-11,
6.71040198e-12, 6.71040198e-12, 6.71040198e-12, 6.71040198e-12,
4.95138882e-13, 4.95138882e-13, 4.95138882e-13, 4.95138882e-13,
3.63525561e-14, 3.63525561e-14, 3.63525561e-14, 3.63525561e-14,
2.57574053e-15, 2.57574053e-15, 2.57574053e-15, 2.57574053e-15,
1.50998902e-16, 1.50998902e-16, 1.50998902e-16, 1.50998902e-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.99987459e-08, 9.99987459e-08, 9.99987459e-08, 9.99987459e-08,
7.46125181e-09, 7.46125181e-09, 7.46125181e-09, 7.46125181e-09,
5.55345414e-10, 5.55345414e-10, 5.55345414e-10, 5.55345414e-10,
4.12299497e-11, 4.12299497e-11, 4.12299497e-11, 4.12299497e-11,
3.05317647e-12, 3.05317647e-12, 3.05317647e-12, 3.05317647e-12,
2.25404963e-13, 2.25404963e-13, 2.25404963e-13, 2.25404963e-13,
1.64906646e-14, 1.64906646e-14, 1.64906646e-14, 1.64906646e-14,
1.14601822e-15, 1.14601822e-15, 1.14601822e-15, 1.14601822e-15,
4.62768323e-17, 4.62768323e-17, 4.62768323e-17, 4.62768323e-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.38340688e-09, 3.38340688e-09, 3.38340688e-09, 3.38340688e-09,
2.52067818e-10, 2.52067818e-10, 2.52067818e-10, 2.52067818e-10,
1.87324876e-11, 1.87324876e-11, 1.87324876e-11, 1.87324876e-11,
1.38852565e-12, 1.38852565e-12, 1.38852565e-12, 1.38852565e-12,
1.02459592e-13, 1.02459592e-13, 1.02459592e-13, 1.02459592e-13,
7.43087974e-15, 7.43087974e-15, 7.43087974e-15, 7.43087974e-15,
5.49179378e-16, 5.49179378e-16, 5.49179378e-16, 5.49179378e-16,
1.14063637e-17, 1.14063637e-17, 1.14063637e-17, 1.14063637e-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.53361064e-09, 1.53361064e-09, 1.53361064e-09, 1.53361064e-09,
1.14369026e-10, 1.14369026e-10, 1.14369026e-10, 1.14369026e-10,
8.50759361e-12, 8.50759361e-12, 8.50759361e-12, 8.50759361e-12,
6.31019787e-13, 6.31019787e-13, 6.31019787e-13, 6.31019787e-13,
4.65731418e-14, 4.65731418e-14, 4.65731418e-14, 4.65731418e-14,
3.41568785e-15, 3.41568785e-15, 3.41568785e-15, 3.41568785e-15,
2.09837436e-16, 2.09837436e-16, 2.09837436e-16, 2.09837436e-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.28475936e-09, 9.28475936e-09, 9.28475936e-09, 9.28475936e-09,
6.94864882e-10, 6.94864882e-10, 6.94864882e-10, 6.94864882e-10,
5.18713076e-11, 5.18713076e-11, 5.18713076e-11, 5.18713076e-11,
3.86215245e-12, 3.86215245e-12, 3.86215245e-12, 3.86215245e-12,
2.86729339e-13, 2.86729339e-13, 2.86729339e-13, 2.86729339e-13,
2.12263905e-14, 2.12263905e-14, 2.12263905e-14, 2.12263905e-14,
1.50770497e-15, 1.50770497e-15, 1.50770497e-15, 1.50770497e-15,
5.83240862e-17, 5.83240862e-17, 5.83240862e-17, 5.83240862e-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.43754126e-07, 7.43754126e-07, 7.43754126e-07, 7.43754126e-07,
5.59602798e-08, 5.59602798e-08, 5.59602798e-08, 5.59602798e-08,
4.20149900e-09, 4.20149900e-09, 4.20149900e-09, 4.20149900e-09,
3.14719618e-10, 3.14719618e-10, 3.14719618e-10, 3.14719618e-10,
2.35163843e-11, 2.35163843e-11, 2.35163843e-11, 2.35163843e-11,
1.75272451e-12, 1.75272451e-12, 1.75272451e-12, 1.75272451e-12,
1.30268527e-13, 1.30268527e-13, 1.30268527e-13, 1.30268527e-13,
9.53228040e-15, 9.53228040e-15, 9.53228040e-15, 9.53228040e-15,
6.66890320e-16, 6.66890320e-16, 6.66890320e-16, 6.66890320e-16,
1.13902281e-17, 1.13902281e-17, 1.13902281e-17, 1.13902281e-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.52955864e-08, 2.52955864e-08, 2.52955864e-08, 2.52955864e-08,
1.90071382e-09, 1.90071382e-09, 1.90071382e-09, 1.90071382e-09,
1.42497162e-10, 1.42497162e-10, 1.42497162e-10, 1.42497162e-10,
1.06576407e-11, 1.06576407e-11, 1.06576407e-11, 1.06576407e-11,
7.95082976e-13, 7.95082976e-13, 7.95082976e-13, 7.95082976e-13,
5.89524579e-14, 5.89524579e-14, 5.89524579e-14, 5.89524579e-14,
4.35118931e-15, 4.35118931e-15, 4.35118931e-15, 4.35118931e-15,
2.92221983e-16, 2.92221983e-16, 2.92221983e-16, 2.92221983e-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.51640691e-07, 1.51640691e-07, 1.51640691e-07, 1.51640691e-07,
1.14299112e-08, 1.14299112e-08, 1.14299112e-08, 1.14299112e-08,
8.59588889e-10, 8.59588889e-10, 8.59588889e-10, 8.59588889e-10,
6.44986576e-11, 6.44986576e-11, 6.44986576e-11, 6.44986576e-11,
4.82825781e-12, 4.82825781e-12, 4.82825781e-12, 4.82825781e-12,
3.60293269e-13, 3.60293269e-13, 3.60293269e-13, 3.60293269e-13,
2.67754040e-14, 2.67754040e-14, 2.67754040e-14, 2.67754040e-14,
1.97749692e-15, 1.97749692e-15, 1.97749692e-15, 1.97749692e-15,
1.39345500e-16, 1.39345500e-16, 1.39345500e-16, 1.39345500e-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.00204016e-08, 1.00204016e-08, 1.00204016e-08, 1.00204016e-08,
7.48783684e-10, 7.48783684e-10, 7.48783684e-10, 7.48783684e-10,
5.58270908e-11, 5.58270908e-11, 5.58270908e-11, 5.58270908e-11,
4.15152045e-12, 4.15152045e-12, 4.15152045e-12, 4.15152045e-12,
3.07797034e-13, 3.07797034e-13, 3.07797034e-13, 3.07797034e-13,
2.26911152e-14, 2.26911152e-14, 2.26911152e-14, 2.26911152e-14,
1.60795828e-15, 1.60795828e-15, 1.60795828e-15, 1.60795828e-15,
8.79856092e-17, 8.79856092e-17, 8.79856092e-17, 8.79856092e-17,
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 12.34 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.00 us (55.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 : 811.00 ns (0.2%)
patch tree reduce : 1.07 us (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 407.68 us (97.9%)
LB move op cnt : 0
LB apply : 2.37 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 : 9.32 us (2.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 323.54 us (93.4%)
LB move op cnt : 0
LB apply : 3.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (59.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.5089e+05 | 65536 | 2 | 1.868e-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 = 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.43 us (1.9%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 264.07 us (92.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.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 | 5.7736e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.09258755096517 (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.42 us (1.8%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 275.61 us (93.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.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 | 5.2699e+05 | 65536 | 2 | 1.244e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.37353687409832 (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.76 us (2.1%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 250.67 us (92.6%)
LB move op cnt : 0
LB apply : 3.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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 | 5.7613e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.97826383459876 (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.85 us (2.1%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 254.38 us (92.7%)
LB move op cnt : 0
LB apply : 3.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.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 | 6.1483e+05 | 65536 | 2 | 1.066e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.60382814109945 (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.87 us (1.9%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 286.68 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.34 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 | 5.8729e+05 | 65536 | 2 | 1.116e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.023719506896235 (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.93 us (1.9%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 283.59 us (93.0%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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 | 6.0454e+05 | 65536 | 2 | 1.084e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.63993361828139 (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.34 us (2.1%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 238.55 us (92.4%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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 | 5.6950e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.3566841599874 (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.58 us (2.1%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 249.73 us (92.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (59.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 | 5.7844e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.194521391171016 (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.60 us (2.3%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 224.24 us (91.9%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.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.1624e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.997956863196826 (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.51 us (2.4%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 210.94 us (91.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.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.3235e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.506933132140254 (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.16 us (2.1%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 222.30 us (91.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (59.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.2335e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.66335553985899 (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 : 16.69 us (7.1%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 202.00 us (86.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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.4666e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.84814717906945 (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.37 us (2.0%)
patch tree reduce : 2.17 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 254.45 us (92.6%)
LB move op cnt : 0
LB apply : 3.63 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (50.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.4625e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.80974582485272 (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.47 us (2.1%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 240.88 us (92.4%)
LB move op cnt : 0
LB apply : 3.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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.4031e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.25256093162721 (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.90 us (2.7%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 202.18 us (91.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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.2473e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.79351332887977 (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.80 us (2.6%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 204.15 us (91.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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.1315e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.708397713678025 (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.77 us (2.8%)
patch tree reduce : 2.23 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 188.86 us (90.5%)
LB move op cnt : 0
LB apply : 2.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (52.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.2400e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.72484259878158 (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.66 us (2.5%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 207.53 us (91.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.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.3746e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.98573896133137 (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 (2.4%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 220.59 us (91.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.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.4436e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.632065066844056 (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.70 us (2.1%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 245.62 us (92.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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 | 5.9326e+05 | 65536 | 2 | 1.105e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.58259904253555 (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.60 us (2.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 219.64 us (91.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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 | 5.7595e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.96121178818465 (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 : 6.11 us (2.3%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 240.98 us (92.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 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 | 6.1089e+05 | 65536 | 2 | 1.073e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.23452123356782 (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.09 us (2.1%)
patch tree reduce : 2.21 us (0.9%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 226.35 us (92.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.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 | 5.1178e+05 | 65536 | 2 | 1.281e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.948969217586004 (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.77 us (2.7%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 190.92 us (90.7%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (53.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 | 6.0284e+05 | 65536 | 2 | 1.087e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.480032605674225 (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.40 us (2.5%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 194.21 us (90.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.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 | 5.0412e+05 | 65536 | 2 | 1.300e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.23070287163725 (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.69 us (2.2%)
patch tree reduce : 2.19 us (0.8%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 241.97 us (92.2%)
LB move op cnt : 0
LB apply : 3.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.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 | 6.1357e+05 | 65536 | 2 | 1.068e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.485417279060485 (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.69 us (2.5%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 207.98 us (91.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 6.1358e+05 | 65536 | 2 | 1.068e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.48620467103074 (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.45 us (2.3%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 220.85 us (91.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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 | 6.0500e+05 | 65536 | 2 | 1.083e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.682907374136946 (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.99 us (2.4%)
patch tree reduce : 2.22 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 227.63 us (91.7%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (59.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.5691e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.80832516708778 (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.59 us (2.3%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 224.06 us (91.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.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.5918e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.02067281791508 (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.92 us (2.4%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 229.95 us (92.0%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (51.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.4432e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.62857100691117 (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.67 us (2.5%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 211.35 us (91.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (58.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.3741e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.98150595803974 (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.68 us (2.1%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 246.51 us (92.5%)
LB move op cnt : 0
LB apply : 3.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.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.4431e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.627502781079436 (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.93 us (2.2%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 252.99 us (92.6%)
LB move op cnt : 0
LB apply : 3.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (58.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.4710e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.88888863544995 (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.94 us (2.3%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 234.85 us (91.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.9%)
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.3135e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.413254460132855 (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 (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 205.59 us (91.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.8%)
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.3911e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.14068331986382 (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.79 us (2.4%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 222.85 us (91.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.2%)
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.3541e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.793570170899606 (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 (2.3%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 211.17 us (91.7%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (59.6%)
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.1831e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.191999371963014 (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 : 6.18 us (2.7%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 210.86 us (91.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (59.8%)
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.3499e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.754296437228916 (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.53 us (2.2%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 226.78 us (91.9%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (53.1%)
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.3793e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.029787330088844 (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.51 us (2.5%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 203.91 us (91.1%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (55.1%)
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 | 4.1677e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.047493123512815 (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.63 us (1.0%)
patch tree reduce : 2.28 us (0.4%)
gen split merge : 1.12 us (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.2%)
LB compute : 544.25 us (96.3%)
LB move op cnt : 0
LB apply : 3.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (66.5%)
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 | 4.1242e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.64020061885354 (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.32 us (2.2%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 226.15 us (92.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.1%)
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 | 4.0916e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.33426191858769 (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.59 us (2.6%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 199.07 us (91.1%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (56.5%)
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 | 4.1066e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.474947921797934 (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.50 us (2.5%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 202.78 us (91.3%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (59.2%)
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 | 4.0542e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.98371020359319 (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.72 us (2.3%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 230.32 us (92.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.7%)
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 | 5.6662e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.08704475482132 (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.58 us (2.3%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 221.19 us (91.8%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (61.9%)
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 | 5.7406e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.78357137266039 (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.68 us (2.3%)
patch tree reduce : 2.27 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 227.11 us (91.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (56.4%)
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.1145e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.5485875298291 (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.67 us (2.3%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 225.79 us (90.6%)
LB move op cnt : 0
LB apply : 5.24 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.9%)
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 | 3.9380e+05 | 65536 | 2 | 1.664e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.89547901236166 (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.36 us (2.4%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 208.26 us (91.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (55.5%)
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.5668e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.78690869515475 (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.24 us (2.1%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 229.05 us (92.3%)
LB move op cnt : 0
LB apply : 3.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.0%)
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 | 5.6923e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.33168176098466 (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.36 us (2.4%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 205.11 us (91.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (60.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 | 5.7847e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.197120407991505 (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.39 us (2.4%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 206.39 us (91.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (61.3%)
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 | 5.7534e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.90372005323516 (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.25 us (2.2%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 214.43 us (91.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.2%)
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 | 5.7706e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.065428766921514 (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 : 5.41 us (2.2%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 214.44 us (87.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (55.7%)
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 | 5.7915e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.26120538011147 (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.38 us (0.9%)
patch tree reduce : 2.12 us (0.4%)
gen split merge : 1.03 us (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.2%)
LB compute : 570.73 us (96.5%)
LB move op cnt : 0
LB apply : 3.76 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.3%)
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.4420e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.61700187657634 (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.92 us (2.2%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 250.04 us (92.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (59.1%)
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.4775e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.94995076879694 (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 : 6.18 us (2.3%)
patch tree reduce : 2.16 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 : 251.30 us (92.6%)
LB move op cnt : 0
LB apply : 3.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (65.5%)
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.2319e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.64872397757085 (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.71 us (2.6%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 200.67 us (91.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (57.5%)
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.3772e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.01039299159366 (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 : 5.22 us (2.1%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 232.80 us (92.1%)
LB move op cnt : 0
LB apply : 3.72 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (61.9%)
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.3578e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.82903849243292 (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.70 us (2.6%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 199.37 us (90.9%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (62.0%)
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 | 4.3561e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.81312008562592 (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.40 us (2.1%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 239.95 us (92.3%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (57.7%)
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 | 4.3063e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.34673717723312 (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.52 us (2.5%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 201.64 us (90.9%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (59.5%)
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.9564e+05 | 65536 | 2 | 1.656e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.06893346283534 (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 : 6.05 us (2.6%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 210.27 us (90.7%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (52.5%)
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 | 4.5954e+05 | 65536 | 2 | 1.426e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.05605737524385 (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.43 us (2.3%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 216.30 us (91.7%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.6%)
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 | 4.4324e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.52995602092942 (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.39 us (2.3%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 210.49 us (91.4%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.3%)
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 | 4.4063e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.286281587462014 (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.81 us (2.6%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 203.04 us (91.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (52.6%)
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 | 4.2824e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.12696422150583 (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.43 us (2.4%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 204.80 us (90.5%)
LB move op cnt : 0
LB apply : 5.37 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (53.9%)
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 | 4.4181e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.4006965906567 (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.03 us (2.7%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 203.36 us (91.1%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.8%)
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.4201e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.422004281110546 (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.61 us (2.5%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 203.11 us (91.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (54.9%)
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 | 4.3908e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.15055789265087 (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 : 6.07 us (2.2%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 257.17 us (92.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (62.4%)
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 | 4.4304e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.5258471082869 (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.40 us (2.1%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 237.03 us (92.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.1%)
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 | 4.4247e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.47731081311315 (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.61 us (2.5%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 202.14 us (91.2%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (49.5%)
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.4628e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.84145223566102 (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.75 us (2.7%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 193.48 us (90.8%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (57.0%)
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.4969e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.16853140105718 (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.21 us (2.3%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 206.98 us (91.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (60.6%)
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 | 4.4975e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.183794880491334 (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.48 us (2.5%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 201.05 us (91.1%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.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.4390e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.64689265008758 (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.70 us (2.3%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 215.47 us (88.5%)
LB move op cnt : 0
LB apply : 7.12 us (2.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (62.7%)
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.4572e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.830857591367014 (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.41 us (1.8%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 279.83 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.42 us (62.0%)
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.4216e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.51287956793652 (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 : 16.81 us (5.7%)
patch tree reduce : 2.29 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 261.05 us (89.1%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.3%)
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.4521e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.81717650021012 (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 : 6.25 us (2.5%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 228.79 us (91.7%)
LB move op cnt : 0
LB apply : 3.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.4%)
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.4606e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.91872592996513 (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.86 us (2.2%)
patch tree reduce : 2.18 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 243.08 us (92.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.7%)
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.4396e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.746071308611114 (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 : 7.80 us (3.4%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 208.73 us (90.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.8%)
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.6355e+05 | 65536 | 2 | 1.414e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.616499490209414 (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.05 us (2.0%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 233.13 us (92.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.0%)
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 | 4.6945e+05 | 65536 | 2 | 1.396e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.205100201771195 (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.66 us (2.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 217.48 us (91.7%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (60.1%)
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 | 4.3485e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.98141926366533 (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.72 us (1.7%)
patch tree reduce : 2.23 us (0.7%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 313.64 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.29 us (62.3%)
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 | 4.3059e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.61829959762837 (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.39 us (2.5%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 198.27 us (91.0%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (53.0%)
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.4622e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.13765269228815 (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.65 us (2.4%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 217.34 us (91.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (57.1%)
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.3421e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.050365213608785 (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.45 us (2.4%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 206.08 us (91.3%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (55.0%)
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.5532e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.89468130294597 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 105.78517041500001 (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 1.68 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.56 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 : 782.00 ns (0.3%)
patch tree reduce : 1.10 us (0.4%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 255.02 us (96.4%)
LB move op cnt : 0
LB apply : 2.68 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.27 us (3.0%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.3%)
LB compute : 257.58 us (92.6%)
LB move op cnt : 0
LB apply : 2.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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 | 5.3713e+05 | 65536 | 2 | 1.220e-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 : 5.90 us (2.4%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 224.60 us (91.9%)
LB move op cnt : 0
LB apply : 2.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (52.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.0574e+05 | 65536 | 2 | 2.144e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.644584048563438 (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.18 us (0.2%)
patch tree reduce : 2.00 us (0.1%)
gen split merge : 1.14 us (0.0%)
split / merge op : 0/0
apply split merge : 1.00 us (0.0%)
LB compute : 2.43 ms (99.1%)
LB move op cnt : 0
LB apply : 4.14 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 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 | 3.7820e+05 | 65536 | 2 | 1.733e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.43331103167523 (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.20 us (1.9%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 256.07 us (92.9%)
LB move op cnt : 0
LB apply : 3.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.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 | 5.8396e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.71131646274995 (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.45 us (1.9%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 259.23 us (92.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (58.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.6662e+05 | 65536 | 2 | 1.788e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.348848923866335 (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.49 us (2.1%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 239.10 us (92.3%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 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 | 5.2140e+05 | 65536 | 2 | 1.257e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.84993522629429 (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.67 us (2.2%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 240.66 us (92.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (44.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 | 6.0190e+05 | 65536 | 2 | 1.089e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.3918116640581 (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 (2.1%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 242.21 us (92.6%)
LB move op cnt : 0
LB apply : 3.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.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.5349e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.48793245285069 (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.05 us (2.1%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 220.92 us (92.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.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 | 5.8326e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.64551710304126 (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.90 us (2.8%)
patch tree reduce : 2.24 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 190.39 us (90.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (58.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 | 5.8273e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.596309947669575 (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.37 us (2.3%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 213.27 us (90.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.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 | 5.8754e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.04643315722389 (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 : 4.92 us (0.8%)
patch tree reduce : 2.26 us (0.4%)
gen split merge : 1.11 us (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 607.61 us (96.9%)
LB move op cnt : 0
LB apply : 3.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (59.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 | 5.8415e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.72962647586242 (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.61 us (2.7%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 187.73 us (90.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (53.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 | 5.9031e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.306758734748335 (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.58 us (2.5%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 199.06 us (91.0%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (55.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 | 5.9132e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.40066543901879 (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 (2.5%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 193.99 us (90.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.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 | 5.9401e+05 | 65536 | 2 | 1.103e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.65328367881342 (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.10 us (2.4%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 196.61 us (91.0%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (54.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 | 5.9354e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.608740748604696 (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.24 us (2.4%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 195.67 us (91.0%)
LB move op cnt : 0
LB apply : 2.86 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (68.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 | 5.8983e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.26129385104693 (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.57 us (2.3%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 218.59 us (91.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 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 | 4.6019e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.11494565293427 (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.69 us (2.3%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 228.81 us (92.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (53.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 | 5.2310e+05 | 65536 | 2 | 1.253e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.009260607740025 (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.78 us (2.1%)
patch tree reduce : 2.30 us (0.9%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 250.04 us (92.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (54.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 | 5.2261e+05 | 65536 | 2 | 1.254e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.963069306493644 (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.69 us (2.2%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 241.72 us (92.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 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 | 5.6534e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.966617172982495 (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 : 16.77 us (7.4%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 195.11 us (86.4%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.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 | 5.1519e+05 | 65536 | 2 | 1.272e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.2682844284416 (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.36 us (2.4%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 206.68 us (91.1%)
LB move op cnt : 0
LB apply : 3.47 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.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 | 5.7339e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.72068200344564 (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.91 us (2.7%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 196.98 us (90.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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 | 5.8785e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.07565869784912 (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.70 us (2.7%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 189.40 us (90.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (52.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 | 5.7693e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.05278084545106 (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.67 us (2.7%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 186.55 us (90.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (51.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 | 5.8381e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.69732180591564 (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.65 us (2.3%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 223.55 us (90.2%)
LB move op cnt : 0
LB apply : 5.47 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (55.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 | 5.8165e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.495340626364275 (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.42 us (2.2%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 225.86 us (91.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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.2973e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.261989268869144 (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 (2.7%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 185.92 us (90.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (50.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 | 5.1663e+05 | 65536 | 2 | 1.269e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.402979820856864 (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.03 us (2.6%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 207.61 us (90.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.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.4234e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.44319756500028 (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.37 us (2.2%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 221.70 us (91.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.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.5963e+05 | 65536 | 2 | 1.426e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.06275493644822 (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.37 us (2.0%)
patch tree reduce : 2.21 us (0.8%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 251.62 us (92.7%)
LB move op cnt : 0
LB apply : 3.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.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.4628e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.811893961687936 (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.39 us (2.2%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 226.00 us (91.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.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 | 5.6007e+05 | 65536 | 2 | 1.170e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.47356809598617 (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 : 9.98 us (4.3%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 207.54 us (89.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (58.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 | 5.4057e+05 | 65536 | 2 | 1.212e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.64593120124187 (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.57 us (2.4%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 216.43 us (91.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.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.2791e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.090883058016 (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.47 us (2.0%)
patch tree reduce : 2.47 us (0.9%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 252.37 us (92.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (52.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 | 5.1905e+05 | 65536 | 2 | 1.263e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.62956389090222 (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.52 us (2.5%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 203.50 us (91.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (53.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 | 5.6940e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.34718816528371 (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.41 us (2.0%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 245.23 us (92.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (59.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 | 5.6836e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.24963496479188 (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.71 us (2.4%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 219.00 us (91.6%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (53.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.9416e+05 | 65536 | 2 | 1.326e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.29847685729456 (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.60 us (2.7%)
patch tree reduce : 2.25 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 190.56 us (90.4%)
LB move op cnt : 0
LB apply : 3.34 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.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.9292e+05 | 65536 | 2 | 1.330e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.18193422333591 (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.20 us (2.3%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 202.90 us (91.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.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 | 5.7315e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.69869917055761 (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.35 us (2.2%)
patch tree reduce : 2.26 us (0.9%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 220.87 us (91.8%)
LB move op cnt : 0
LB apply : 3.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.1%)
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 | 5.8034e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.372351164301755 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06992879191740603, dt = 0.0017055802906684396
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 206.51 us (91.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.0%)
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 | 6.0375e+05 | 65536 | 2 | 1.085e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.565433939545535 (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.40 us (2.6%)
patch tree reduce : 2.34 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 186.46 us (90.5%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (58.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 | 5.9726e+05 | 65536 | 2 | 1.097e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.95754118553274 (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.44 us (2.4%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 203.79 us (91.3%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (57.8%)
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 | 5.9164e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.431130639335386 (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 : 6.13 us (2.8%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 196.93 us (90.6%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (57.0%)
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 | 5.9759e+05 | 65536 | 2 | 1.097e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.988712970525654 (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 : 5.59 us (2.5%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 201.41 us (91.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.1%)
Info: cfl dt = 0.0017055802906687768 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9566e+05 | 65536 | 2 | 1.100e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.80796418459311 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0784566933707484, dt = 0.0017055802906687768
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 219.74 us (91.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (59.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 | 4.8714e+05 | 65536 | 2 | 1.345e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.640700597247445 (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 : 5.41 us (2.6%)
patch tree reduce : 2.31 us (1.1%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 187.08 us (90.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (53.4%)
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 | 5.8914e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.19667144095766 (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.58 us (2.6%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 191.55 us (90.9%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (54.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 | 5.8244e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.569238689244614 (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.88 us (2.8%)
patch tree reduce : 2.35 us (1.1%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 186.81 us (90.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (58.9%)
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 | 5.8853e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.13924029079722 (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.69 us (2.7%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 188.57 us (90.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.9%)
Info: cfl dt = 0.0017055802907061887 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9051e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.324976011371334 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08698459482411672, dt = 0.0017055802907061887
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 194.45 us (90.8%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.1%)
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 | 5.8988e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.26598730279907 (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.56 us (2.5%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 201.58 us (91.0%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.0%)
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 | 5.8672e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.97012123339959 (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.13 us (2.2%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 217.33 us (92.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (60.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 | 4.4244e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.45206004502827 (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.84 us (2.4%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 221.20 us (91.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.1%)
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.6019e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.11536376227383 (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.03 us (2.5%)
patch tree reduce : 2.28 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 183.64 us (90.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (55.2%)
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 | 5.9698e+05 | 65536 | 2 | 1.098e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.93097483210881 (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 : 5.62 us (2.4%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 217.90 us (91.5%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (58.3%)
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 | 5.7394e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.773004345487195 (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.61 us (2.7%)
patch tree reduce : 1.99 us (1.0%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 187.57 us (90.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.9%)
Info: cfl dt = 0.0017055802976697137 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6202e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.65550563364801 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09892365686579493, dt = 0.0017055802976697137
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 246.75 us (92.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (59.7%)
Info: cfl dt = 0.0017055803040218654 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9017e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.292852920794196 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10062923716346465, dt = 0.0017055803040218654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 187.00 us (90.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (54.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 | 5.9368e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.62173787071658 (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.73 us (2.7%)
patch tree reduce : 1.83 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 190.30 us (90.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (61.2%)
Info: cfl dt = 0.0017055803362700296 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8843e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.13013261965622 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10404039778308471, dt = 0.0017055803362700296
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.41 us (1.2%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 188.24 us (90.2%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (51.3%)
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 | 5.8544e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.85035549099561 (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 : 5.37 us (2.5%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 194.76 us (90.8%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.8%)
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 | 5.9186e+05 | 65536 | 2 | 1.107e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.45118228326727 (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 : 5.41 us (2.6%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 187.35 us (90.6%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (51.0%)
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 | 5.8921e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.203728410046594 (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.40 us (2.5%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 198.91 us (91.0%)
LB move op cnt : 0
LB apply : 3.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.5%)
Info: cfl dt = 0.0017055807141157198 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9410e+05 | 65536 | 2 | 1.103e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.661104110985704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11086271946628443, dt = 0.0017055807141157198
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.31 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 188.95 us (90.6%)
LB move op cnt : 0
LB apply : 3.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.7%)
Info: cfl dt = 0.0017055809987137243 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9300e+05 | 65536 | 2 | 1.105e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.558236042403365 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11256830018040015, dt = 0.0017055809987137243
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 188.42 us (90.3%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (56.5%)
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 | 5.8541e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.84763839524856 (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.85 us (2.5%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 216.56 us (91.2%)
LB move op cnt : 0
LB apply : 3.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.7%)
Info: cfl dt = 0.0017055821790647283 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9003e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.279992748678595 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11597946263500743, dt = 0.0017055821790647283
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (3.0%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 187.69 us (90.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (55.8%)
Info: cfl dt = 0.0017055833060424424 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9073e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.34588855317534 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11768504481407216, dt = 0.0017055833060424424
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 191.79 us (90.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: cfl dt = 0.0017055850371140585 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8366e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.683388614188125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1193906281201146, dt = 0.0017055850371140585
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 247.53 us (91.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.6%)
Info: cfl dt = 0.0017055876591026125 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.18123141195774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12109621315722865, dt = 0.0017055876591026125
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 203.47 us (91.4%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (52.0%)
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.2910e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.20275934216562 (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.80 us (2.3%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.31 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 231.80 us (92.0%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.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.2300e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.63143899503846 (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.44 us (2.4%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 208.83 us (91.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (54.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 | 4.2050e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.397354300967415 (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 : 6.04 us (2.5%)
patch tree reduce : 3.41 us (1.4%)
gen split merge : 1.65 us (0.7%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 215.44 us (90.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (53.4%)
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 | 4.1220e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.61934417405793 (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 : 5.76 us (2.6%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 200.87 us (91.0%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (62.5%)
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.1902e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.2593897852493 (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.59 us (2.5%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 202.26 us (91.1%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (52.9%)
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.0546e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.98936389848475 (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.63 us (2.6%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 192.71 us (90.7%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (57.0%)
Info: cfl dt = 0.0017056925221283384 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0241e+05 | 65536 | 2 | 1.629e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.70384044755697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13303550749684084, dt = 0.0017056925221283384
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 196.11 us (90.8%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (52.7%)
Info: cfl dt = 0.0017057383315521957 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0456e+05 | 65536 | 2 | 1.620e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.90570558312392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1347412000189692, dt = 0.0017057383315521957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 202.37 us (90.9%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.4%)
Info: cfl dt = 0.0017058004408294063 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1463e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.850512682848574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13644693835052138, dt = 0.0017058004408294063
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.17 us (0.8%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 245.95 us (92.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.2%)
Info: cfl dt = 0.0017058837290848477 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0339e+05 | 65536 | 2 | 1.625e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.79830312805893 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1381527387913508, dt = 0.0017058837290848477
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 229.25 us (91.9%)
LB move op cnt : 0
LB apply : 3.55 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (58.9%)
Info: cfl dt = 0.001705994220142911 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1050e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.466676895156354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13985862252043563, dt = 0.001705994220142911
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 213.18 us (91.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (61.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.0291e+05 | 65536 | 2 | 1.627e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.75763098388858 (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.82 us (2.4%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 226.70 us (91.6%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (53.3%)
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.0970e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.39716905707004 (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.83 us (2.6%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 204.14 us (91.2%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (61.8%)
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 | 4.0604e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.05914822800687 (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.9%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 260.44 us (93.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (63.7%)
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 | 4.0265e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.74673701411415 (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.66 us (2.1%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 245.19 us (92.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (62.0%)
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 | 3.9449e+05 | 65536 | 2 | 1.661e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.98806225716463 (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.62 us (2.1%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 242.85 us (92.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.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.0165e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.510395139909114 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 117.49403084100001 (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.86 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.53 us (52.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 : 781.00 ns (0.3%)
patch tree reduce : 1.17 us (0.4%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.4%)
LB compute : 254.16 us (96.3%)
LB move op cnt : 0
LB apply : 2.86 us (1.1%)
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 : 117.63912879600001 (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.33 us (2.9%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.3%)
LB compute : 231.41 us (91.6%)
LB move op cnt : 0
LB apply : 3.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (75.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 | 5.5877e+05 | 65536 | 2 | 1.173e-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.35 us (2.5%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 192.61 us (90.8%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 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 | 5.8073e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.40839097790443 (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.89 us (2.8%)
patch tree reduce : 1.80 us (0.9%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 189.17 us (90.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (58.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 | 5.8456e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.76808000253803 (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.62 us (2.8%)
patch tree reduce : 2.09 us (1.1%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.6%)
LB compute : 178.31 us (89.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (59.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.4717e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.323095617313406 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 118.184882224 (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 : 7.35 us (2.9%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 228.39 us (91.2%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (57.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 | 5.9752e+05 | 65536 | 2 | 1.097e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.98145868467235 (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.40 us (2.4%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 201.38 us (90.9%)
LB move op cnt : 0
LB apply : 3.40 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.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 | 5.7933e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.27745054986133 (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.45 us (2.7%)
patch tree reduce : 1.96 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 185.54 us (90.6%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (53.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 | 5.6679e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.549688096931327 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 118.59366809400001 (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.10 us (2.5%)
patch tree reduce : 2.21 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 261.14 us (92.3%)
LB move op cnt : 0
LB apply : 3.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.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 | 5.6312e+05 | 65536 | 2 | 1.164e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.758762026268144 (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 : 5.91 us (2.6%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 204.83 us (91.0%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (56.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.2060e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.40576080126166 (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 : 5.79 us (2.6%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 201.36 us (90.8%)
LB move op cnt : 0
LB apply : 3.49 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (54.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.2332e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.87924619787169 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 119.077701219 (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 : 7.14 us (2.5%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 269.12 us (92.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.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 | 5.6714e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.1353094432345 (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.62 us (2.7%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 188.81 us (90.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.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 | 5.8579e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.883142937232606 (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.19 us (2.1%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 232.22 us (92.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (56.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 | 5.7559e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.71336933065505 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 119.47785510300001 (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.25 us (2.8%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 240.61 us (91.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.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 | 5.6987e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.39128986612955 (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 : 6.15 us (2.9%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 188.42 us (90.3%)
LB move op cnt : 0
LB apply : 2.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 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 | 5.8001e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.341428620275295 (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.35 us (2.6%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 189.59 us (90.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 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 | 5.6780e+05 | 65536 | 2 | 1.154e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.568476595557142 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 119.87787166100001 (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.04 us (2.4%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 266.95 us (92.5%)
LB move op cnt : 0
LB apply : 3.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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 | 5.7028e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.430184142513156 (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.98 us (2.9%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 184.72 us (90.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.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 | 5.5779e+05 | 65536 | 2 | 1.175e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.259915759483405 (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.53 us (2.5%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 201.98 us (91.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (54.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 | 5.6831e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.57788536873314 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 120.28148154700001 (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 : 7.35 us (2.6%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 244.70 us (87.5%)
LB move op cnt : 0
LB apply : 16.12 us (5.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (59.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 | 5.8152e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.48264642765423 (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.58 us (2.6%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 191.55 us (88.6%)
LB move op cnt : 0
LB apply : 4.46 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.8796e+05 | 65536 | 2 | 1.343e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.71712303313777 (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.45 us (2.6%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 187.28 us (90.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (57.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 | 5.5531e+05 | 65536 | 2 | 1.180e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.335908425150622 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 120.70589318600001 (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 : 7.89 us (2.8%)
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.00 us (0.4%)
LB compute : 262.32 us (92.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.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 | 5.7606e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.97125974007907 (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.63 us (2.7%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.32 us (0.6%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 187.15 us (90.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (57.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 | 5.6598e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.02729422419007 (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.58 us (2.5%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 200.19 us (91.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.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.2966e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.997266759194822 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 121.15665965100001 (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.94 us (3.0%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 239.09 us (91.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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 | 5.6918e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.32637130080918 (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.59 us (2.2%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 230.76 us (92.0%)
LB move op cnt : 0
LB apply : 3.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.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 | 5.5658e+05 | 65536 | 2 | 1.177e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.14577381198729 (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 : 5.84 us (2.8%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 185.52 us (90.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.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 | 5.6160e+05 | 65536 | 2 | 1.167e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.453155495318752 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 121.57387215400001 (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 : 8.00 us (3.1%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 233.71 us (91.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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 | 5.7022e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.42405737603457 (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.77 us (2.5%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 210.67 us (91.1%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.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 | 5.6402e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.84284302013553 (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 : 6.23 us (2.6%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 215.08 us (91.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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 | 5.7346e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.6738869357394 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 121.980934558 (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.87 us (2.7%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 270.95 us (92.3%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (58.8%)
Info: cfl dt = 0.0017055802906684387 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8078e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.41333462558445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03920558029066844, dt = 0.0017055802906684387
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 203.01 us (91.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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 | 5.7779e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.13349572917051 (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.65 us (2.6%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 198.15 us (90.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.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 | 5.8475e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.884008560891042 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 122.38033631200001 (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 : 7.49 us (2.8%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 247.30 us (91.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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 | 5.7815e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 1.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.16729556342919 (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.90 us (2.8%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 191.27 us (90.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 | 5.8039e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.37653076376584 (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.63 us (2.5%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 203.56 us (91.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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 | 5.6790e+05 | 65536 | 2 | 1.154e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.570240335524597 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 122.77795147200001 (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 : 6.76 us (2.6%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 238.00 us (91.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.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 | 5.5928e+05 | 65536 | 2 | 1.172e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.399114979889916 (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 : 5.67 us (2.7%)
patch tree reduce : 1.83 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 189.72 us (90.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.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 | 5.6457e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.89498539039621 (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.49 us (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 185.08 us (85.7%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 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.6322e+05 | 65536 | 2 | 1.415e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.621936474258124 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 123.21017874300001 (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 : 7.74 us (2.8%)
patch tree reduce : 2.21 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 258.56 us (91.9%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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 | 5.5430e+05 | 65536 | 2 | 1.182e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.932393212257054 (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.09 us (2.5%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 181.69 us (90.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.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 | 5.6242e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.69313945107813 (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.52 us (2.5%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 200.84 us (91.1%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (58.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 | 5.5522e+05 | 65536 | 2 | 1.180e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.334257120825729 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 123.62166942900001 (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.04 us (2.8%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 232.34 us (91.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (74.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 | 5.5335e+05 | 65536 | 2 | 1.184e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.84358428447169 (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.23 us (2.4%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 198.01 us (91.1%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.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 | 5.6285e+05 | 65536 | 2 | 1.164e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.733481048547816 (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.50 us (2.7%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 186.13 us (90.5%)
LB move op cnt : 0
LB apply : 3.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.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.3465e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.090225787907064 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 124.06478799400001 (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.73 us (2.7%)
patch tree reduce : 1.55 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 : 266.42 us (92.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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 | 5.6563e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.99391693381281 (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.44 us (2.3%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 216.55 us (91.5%)
LB move op cnt : 0
LB apply : 3.78 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.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 | 5.7337e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.71941018278456 (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.90 us (2.6%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 209.31 us (91.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.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 | 5.6327e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.484156557939187 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 124.48248313200001 (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.80 us (2.9%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 248.75 us (91.7%)
LB move op cnt : 0
LB apply : 3.40 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 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.7219e+05 | 65536 | 2 | 1.388e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.23933271976801 (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.54 us (2.3%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 226.60 us (92.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (58.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 | 5.8278e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.60123439512354 (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 : 5.72 us (2.7%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 192.35 us (90.7%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (53.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.8707e+05 | 65536 | 2 | 1.346e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.065909997503923 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 124.924745951 (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.32 us (3.0%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 219.15 us (90.9%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (59.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 | 5.8086e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.420569698580366 (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.32 us (2.5%)
patch tree reduce : 2.20 us (1.1%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 189.75 us (90.6%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.3%)
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 | 5.8059e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.3954572691908 (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.58 us (2.3%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 220.01 us (91.8%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (59.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 | 5.8659e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.91819939934156 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 125.319779933 (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 : 7.61 us (2.8%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 252.82 us (92.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (61.8%)
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.4244e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.4521188078699 (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.98 us (2.7%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 205.34 us (91.2%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (55.7%)
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 | 5.9948e+05 | 65536 | 2 | 1.093e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.16570477955797 (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 : 5.86 us (2.5%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 217.93 us (91.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (62.1%)
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 | 5.9384e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.053205970095151 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 125.74894958 (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.93 us (3.1%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 236.79 us (91.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (59.0%)
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 | 5.2829e+05 | 65536 | 2 | 1.241e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.49550061716866 (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.63 us (2.5%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 207.45 us (91.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.4%)
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 | 5.9615e+05 | 65536 | 2 | 1.099e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.8535428403287 (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.60 us (2.6%)
patch tree reduce : 1.82 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 192.12 us (90.7%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.9%)
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 | 4.5055e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.386015100352234 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 126.18679334400001 (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 : 8.12 us (2.9%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 252.94 us (91.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (55.0%)
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.9906e+05 | 65536 | 2 | 1.313e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.75704107921018 (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.86 us (2.8%)
patch tree reduce : 1.81 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 193.21 us (90.7%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.0%)
Info: cfl dt = 0.0017055802906693277 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5708e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.193326398019856 (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.70 us (2.4%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 218.42 us (91.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (60.5%)
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 | 5.7101e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.628164908252502 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 126.62470531800001 (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 : 6.72 us (2.8%)
patch tree reduce : 1.52 us (0.6%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 218.39 us (91.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.1%)
Info: cfl dt = 0.0017055802906712231 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7236e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.62444832059676 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08045558029066954, dt = 0.0017055802906712231
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 208.05 us (91.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (55.5%)
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 | 5.5052e+05 | 65536 | 2 | 1.190e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.578199854329846 (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 (2.6%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 188.44 us (90.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.7%)
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 | 5.8342e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.859231229673085 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 127.02638438000001 (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 : 6.80 us (2.5%)
patch tree reduce : 1.59 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 249.13 us (92.1%)
LB move op cnt : 0
LB apply : 3.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (60.4%)
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 | 5.8060e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.39659407873626 (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.83 us (2.4%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 222.21 us (91.6%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.8%)
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 | 5.7181e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.57332561093648 (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.54 us (2.6%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 191.43 us (90.7%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (58.8%)
Info: cfl dt = 0.0017055802907203824 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8679e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.921872454594734 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 127.42157113700002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.08625, dt = 0.0017055802907203824
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.24 us (3.2%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 236.80 us (91.1%)
LB move op cnt : 0
LB apply : 3.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (60.5%)
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 | 5.6124e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.5830450793164 (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.28 us (2.0%)
patch tree reduce : 2.13 us (0.8%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 248.66 us (92.4%)
LB move op cnt : 0
LB apply : 3.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.3%)
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 | 5.7180e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.57208039224606 (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.57 us (2.7%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 187.90 us (90.4%)
LB move op cnt : 0
LB apply : 3.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.8%)
Info: cfl dt = 0.0017055802909539987 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7141e+05 | 65536 | 2 | 1.390e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.774301235196509 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 127.866446189 (s) [Godunov][rank=0]
amr::Godunov: t = 0.09, dt = 0.0017055802909539987
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.9%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 216.98 us (89.3%)
LB move op cnt : 0
LB apply : 4.28 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.6%)
Info: cfl dt = 0.0017055802912609012 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5791e+05 | 65536 | 2 | 1.175e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.27079868063943 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09170558029095399, dt = 0.0017055802912609012
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 204.16 us (91.3%)
LB move op cnt : 0
LB apply : 3.43 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (61.5%)
Info: cfl dt = 0.0017055802918658285 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5765e+05 | 65536 | 2 | 1.175e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.24680197869592 (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.63 us (2.7%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 192.58 us (90.7%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.6%)
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 | 4.5399e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.450197138120918 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 128.303626269 (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.43 us (3.0%)
patch tree reduce : 2.72 us (1.1%)
gen split merge : 1.34 us (0.5%)
split / merge op : 0/0
apply split merge : 1.76 us (0.7%)
LB compute : 223.66 us (90.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (59.4%)
Info: cfl dt = 0.001705580293402946 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6829e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.24328733195067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09545558029205482, dt = 0.001705580293402946
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 219.84 us (91.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (59.0%)
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 | 5.7458e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.83253326037879 (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.42 us (2.6%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 190.09 us (90.7%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (56.6%)
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 | 4.9654e+05 | 65536 | 2 | 1.320e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.242184074166572 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 128.720940081 (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.82 us (3.2%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 225.07 us (90.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.7%)
Info: cfl dt = 0.0017055803020129443 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6643e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.06886454849514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0992055802966895, dt = 0.0017055803020129443
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (3.1%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 186.70 us (89.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (56.7%)
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 | 5.7370e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.750294350782454 (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 : 6.17 us (2.5%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 229.08 us (91.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (60.4%)
Info: cfl dt = 0.0017055803143136749 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6730e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.55907623493326 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 129.125167933 (s) [Godunov][rank=0]
amr::Godunov: t = 0.10124999999999999, dt = 0.0017055803143136749
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.6%)
patch tree reduce : 1.50 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 : 264.10 us (92.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (66.4%)
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 | 5.7760e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.11556593439347 (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 : 6.14 us (3.0%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 185.35 us (90.2%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (63.9%)
Info: cfl dt = 0.0017055803663408545 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1475e+05 | 65536 | 2 | 1.273e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.22700318736652 (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 : 5.53 us (2.3%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 216.33 us (91.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.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 | 5.5557e+05 | 65536 | 2 | 1.180e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.340795541762729 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 129.540853238 (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 : 7.90 us (2.7%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 272.93 us (92.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (64.6%)
Info: cfl dt = 0.0017055804380436952 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5296e+05 | 65536 | 2 | 1.185e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.806750600139274 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10670558037539984, dt = 0.0017055804380436952
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.26 us (1.1%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 186.81 us (90.4%)
LB move op cnt : 0
LB apply : 3.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (60.8%)
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 | 5.1584e+05 | 65536 | 2 | 1.270e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.32934029364308 (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.44 us (2.2%)
patch tree reduce : 2.22 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 223.40 us (92.0%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (58.3%)
Info: cfl dt = 0.001705580569880072 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3590e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.113365662410242 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 130.010889133 (s) [Godunov][rank=0]
amr::Godunov: t = 0.10875, dt = 0.001705580569880072
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.8%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 248.31 us (91.8%)
LB move op cnt : 0
LB apply : 3.44 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (62.5%)
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 | 5.4989e+05 | 65536 | 2 | 1.192e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.51914560197245 (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 : 5.51 us (2.4%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 212.87 us (91.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (56.3%)
Info: cfl dt = 0.0017055810641680323 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2715e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.0197468728514 (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.14 us (2.1%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 231.13 us (92.2%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.9%)
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 | 5.0403e+05 | 65536 | 2 | 1.300e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.381536482048483 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 130.47163462900002 (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.84 us (2.7%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 231.77 us (91.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (62.6%)
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 | 5.7663e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.02512618589028 (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.36 us (2.6%)
patch tree reduce : 2.24 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 188.32 us (90.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (55.3%)
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 | 5.8167e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.49680105389073 (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.27 us (2.5%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.14 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 187.26 us (90.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (62.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 | 5.8123e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.818358923296108 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 130.86702781600002 (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 : 6.84 us (2.6%)
patch tree reduce : 1.49 us (0.6%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 242.51 us (92.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.7%)
Info: cfl dt = 0.0017055841029076464 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7622e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.98648929236565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11795558270932867, dt = 0.0017055841029076464
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 189.00 us (87.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (59.2%)
Info: cfl dt = 0.0017055862079691953 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7139e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.53397272229512 (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.45 us (2.3%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 221.03 us (91.7%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (61.0%)
Info: cfl dt = 0.0017055867166277047 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7410e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.68560171009327 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 131.266576047 (s) [Godunov][rank=0]
amr::Godunov: t = 0.12, dt = 0.0017055867166277047
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.1%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 221.31 us (91.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.3%)
Info: cfl dt = 0.0017055901338786698 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.79489510458719 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1217055867166277, dt = 0.0017055901338786698
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 211.98 us (91.6%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.1%)
Info: cfl dt = 0.001705595151996219 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6857e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.26954260230504 (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.18 us (2.4%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 193.47 us (90.9%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.4%)
Info: cfl dt = 0.0017055963315413824 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7513e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.704350384515719 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 131.71302336 (s) [Godunov][rank=0]
amr::Godunov: t = 0.12375, dt = 0.0017055963315413824
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.01 us (3.1%)
patch tree reduce : 1.59 us (0.6%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 234.64 us (91.1%)
LB move op cnt : 0
LB apply : 3.67 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (59.9%)
Info: cfl dt = 0.001705604210047168 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6733e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.15385161303087 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12545559633154138, dt = 0.001705604210047168
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 188.86 us (90.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.3%)
Info: cfl dt = 0.0017056154737851933 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6628e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.055780679066835 (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 : 5.54 us (2.3%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 216.94 us (91.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (59.3%)
Info: cfl dt = 0.0017056180527650236 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8065e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.806378274392555 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 132.117165913 (s) [Godunov][rank=0]
amr::Godunov: t = 0.1275, dt = 0.0017056180527650236
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.0%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 228.29 us (91.0%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (62.4%)
Info: cfl dt = 0.001705635186391209 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7178e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.57120242233893 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12920561805276504, dt = 0.001705635186391209
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 189.24 us (90.7%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (61.2%)
Info: cfl dt = 0.0017056590653762433 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4621e+05 | 65536 | 2 | 1.200e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.176011264600646 (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.57 us (2.3%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 223.13 us (91.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (61.0%)
Info: cfl dt = 0.0017056643967931812 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.373861096191678 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 132.553284399 (s) [Godunov][rank=0]
amr::Godunov: t = 0.13125, dt = 0.0017056643967931812
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.23 us (3.1%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 241.47 us (91.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (59.8%)
Info: cfl dt = 0.0017056996427259855 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7270e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.659082853997376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13295566439679318, dt = 0.0017056996427259855
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 258.55 us (93.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.3%)
Info: cfl dt = 0.001705747580791739 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5020e+05 | 65536 | 2 | 1.191e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.551671309774804 (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.64 us (2.2%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 231.22 us (91.9%)
LB move op cnt : 0
LB apply : 3.48 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.9%)
Info: cfl dt = 0.0017057580261110794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6070e+05 | 65536 | 2 | 1.169e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.430046199669437 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 132.965858109 (s) [Godunov][rank=0]
amr::Godunov: t = 0.135, dt = 0.0017057580261110794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.83 us (3.0%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 235.50 us (91.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (60.2%)
Info: cfl dt = 0.0017058267759265746 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7804e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.162754576294496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1367057580261111, dt = 0.0017058267759265746
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 229.18 us (91.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (60.0%)
Info: cfl dt = 0.0017059181166186417 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7411e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.796415581559344 (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.60 us (2.3%)
patch tree reduce : 2.26 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 224.82 us (91.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (61.3%)
Info: cfl dt = 0.001705937549474869 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6781e+05 | 65536 | 2 | 1.154e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.55538287497195 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 133.365056133 (s) [Godunov][rank=0]
amr::Godunov: t = 0.13874999999999998, dt = 0.001705937549474869
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.0%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 226.24 us (91.1%)
LB move op cnt : 0
LB apply : 3.49 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (59.7%)
Info: cfl dt = 0.0017060649740358814 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7899e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.25745834443554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14045593754947486, dt = 0.0017060649740358814
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 185.86 us (90.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.8%)
Info: cfl dt = 0.0017062304900703038 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5868e+05 | 65536 | 2 | 1.173e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.35746774271793 (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.35 us (2.5%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 190.48 us (90.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (61.9%)
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 | 5.6148e+05 | 65536 | 2 | 1.167e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.424807616709145 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 133.771192242 (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 : 8.25 us (1.5%)
patch tree reduce : 1.86 us (0.3%)
gen split merge : 1.04 us (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.2%)
LB compute : 516.93 us (95.7%)
LB move op cnt : 0
LB apply : 3.67 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (58.9%)
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 | 5.7522e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.91450857644598 (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.37 us (2.6%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 191.10 us (91.0%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (60.2%)
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 | 5.7158e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.58013869994965 (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.46 us (2.6%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 187.85 us (90.7%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.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 | 5.7228e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.601653839807703 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 134.17186361 (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.40 us (2.5%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 275.11 us (92.4%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (62.5%)
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 | 5.6708e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.168582900931696 (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.63 us (2.6%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 193.85 us (90.7%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (65.2%)
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 | 5.6531e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.0150502928495 (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.61 us (2.5%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 205.93 us (91.4%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (61.1%)
Info: cfl dt = 0.0017077758010074248 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7443e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.600783755419938 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 134.573708799 (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.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 : 3.48 us (49.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 : 941.00 ns (0.4%)
patch tree reduce : 1.09 us (0.4%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 242.69 us (96.2%)
LB move op cnt : 0
LB apply : 2.84 us (1.1%)
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 : 8.89 us (3.7%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 831.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.4%)
LB compute : 215.35 us (90.7%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.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 | 5.4958e+05 | 65536 | 2 | 1.192e-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 : 5.52 us (2.3%)
patch tree reduce : 2.37 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 217.65 us (91.6%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (52.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 | 5.5835e+05 | 65536 | 2 | 1.174e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.31154147119953 (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.24 us (2.5%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 186.72 us (90.8%)
LB move op cnt : 0
LB apply : 2.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.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 | 5.5411e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.914546871644596 (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.47 us (2.1%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 236.61 us (92.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 | 5.4498e+05 | 65536 | 2 | 1.203e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.059693191296816 (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.48 us (2.6%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 188.06 us (90.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.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 | 5.4664e+05 | 65536 | 2 | 1.199e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.21450643374475 (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.53 us (2.6%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 190.70 us (90.6%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.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 | 5.5304e+05 | 65536 | 2 | 1.185e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.814476538815995 (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.58 us (2.6%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 196.65 us (90.8%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.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 | 5.7410e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.78743973227891 (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.32 us (2.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 202.99 us (91.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (58.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 | 5.6974e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.37870010550643 (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.67 us (2.6%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 196.79 us (90.7%)
LB move op cnt : 0
LB apply : 3.58 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.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 | 5.7412e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.789577562025734 (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.47 us (2.6%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 191.68 us (90.8%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.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.8010e+05 | 65536 | 2 | 1.365e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.98055459052048 (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.66 us (2.7%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 192.11 us (90.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (56.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.9233e+05 | 65536 | 2 | 1.331e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.126922685602864 (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.54 us (2.5%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 206.02 us (91.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.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 | 5.0366e+05 | 65536 | 2 | 1.301e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.18777755920011 (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.67 us (2.6%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 200.39 us (90.9%)
LB move op cnt : 0
LB apply : 3.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (57.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 | 5.0186e+05 | 65536 | 2 | 1.306e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.01926458086552 (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.71 us (2.5%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 208.29 us (91.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.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.6387e+05 | 65536 | 2 | 1.413e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.46004037412026 (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.54 us (2.2%)
patch tree reduce : 2.13 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 236.09 us (92.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.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.7756e+05 | 65536 | 2 | 1.372e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.742360293797546 (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.71 us (2.8%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 181.93 us (90.3%)
LB move op cnt : 0
LB apply : 3.13 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (57.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 | 5.7633e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.99648906910031 (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.27 us (2.4%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 201.99 us (91.1%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.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 | 5.8063e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.39900375079572 (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.67 us (2.2%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 242.54 us (92.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.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.2849e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.14493869110973 (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.73 us (2.3%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 224.02 us (91.6%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (59.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.2885e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.179538462413795 (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.58 us (2.3%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 219.78 us (91.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (60.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.2460e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.78079110643975 (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.82 us (2.6%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 199.89 us (90.9%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.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.2103e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.44632379442576 (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.68 us (2.6%)
patch tree reduce : 2.49 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 199.21 us (90.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.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.2178e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.51694546941013 (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.48 us (2.5%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 196.70 us (90.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (55.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.2644e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.95300401764172 (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 (2.5%)
patch tree reduce : 2.34 us (1.1%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 200.76 us (90.3%)
LB move op cnt : 0
LB apply : 4.16 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.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.1983e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.33404838525394 (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.71 us (2.6%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 203.61 us (91.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (57.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.2424e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.74723279866106 (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.49 us (2.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 209.84 us (91.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (53.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.2540e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.856316340047684 (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.48 us (2.5%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 202.44 us (90.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.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.2898e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.191125578671844 (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.38 us (2.4%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 200.99 us (91.3%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (54.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.1514e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.89453581192145 (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.66 us (2.5%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 203.20 us (91.2%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (52.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.1598e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.973124887220806 (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.77 us (2.6%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 205.99 us (91.2%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (52.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.3289e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.557151578639 (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.27 us (2.3%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 206.79 us (91.4%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.2819e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.116875924688784 (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.53 us (2.2%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 235.95 us (92.1%)
LB move op cnt : 0
LB apply : 3.53 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.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.2976e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.26422342184947 (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.50 us (2.4%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 210.89 us (91.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (56.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.2099e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.44299136862639 (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.40 us (2.3%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 210.62 us (91.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 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.1941e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.29492667747501 (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 (2.3%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 219.70 us (91.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.1043e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.45345555029367 (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.93 us (2.5%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 214.61 us (91.5%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.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.1530e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.90930194173663 (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.71 us (2.5%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 210.00 us (91.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.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.1131e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.5356163903456 (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.76 us (2.6%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 201.58 us (91.0%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.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.1142e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.54561763686272 (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.44 us (2.5%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 198.06 us (90.9%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (52.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.9927e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.40801301286719 (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.68 us (2.6%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 198.00 us (90.6%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 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.1082e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.48943764478937 (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.67 us (3.0%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 199.17 us (90.1%)
LB move op cnt : 0
LB apply : 3.64 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (52.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.2833e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.13069637353751 (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.67 us (2.6%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 200.65 us (90.9%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (54.9%)
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.2121e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.46295455309852 (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.35 us (2.2%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 219.21 us (91.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.1%)
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.1851e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.2102366098242 (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.66 us (2.5%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 204.64 us (91.0%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (55.7%)
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 | 4.3133e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.411860695981076 (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.79 us (2.6%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 892.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 206.95 us (91.4%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (57.2%)
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 | 4.2233e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.56860436858395 (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 : 5.57 us (2.1%)
patch tree reduce : 2.51 us (1.0%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 238.69 us (91.9%)
LB move op cnt : 0
LB apply : 3.52 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (60.4%)
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 | 4.3726e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.966879914909384 (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.48 us (2.4%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 210.34 us (91.4%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.4%)
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.3361e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.62492055946265 (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 : 5.72 us (2.5%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 205.02 us (91.1%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (52.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 | 4.3319e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.585307303376126 (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.65 us (1.3%)
patch tree reduce : 2.26 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 401.22 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.24 us (59.3%)
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.2563e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.87696981359625 (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.28 us (2.0%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 243.17 us (92.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (59.8%)
Info: cfl dt = 0.001705580290674912 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2103e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.44669936435059 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08357343424275754, dt = 0.001705580290674912
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 203.42 us (91.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (59.2%)
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.2363e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.68972039145961 (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.52 us (2.1%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 239.63 us (92.4%)
LB move op cnt : 0
LB apply : 3.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (58.3%)
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.2743e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.04564149796192 (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.72 us (2.5%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.47 us (0.7%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 204.39 us (91.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (55.3%)
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.3110e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.38986472842924 (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.41 us (2.4%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 206.07 us (91.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.5%)
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.2556e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.87121218162247 (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.24 us (2.3%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 209.23 us (91.7%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.2%)
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.9415e+05 | 65536 | 2 | 1.663e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.92762905587096 (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 : 5.57 us (2.5%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 201.23 us (91.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.7%)
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.3852e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.08539019436595 (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.40 us (2.0%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 247.05 us (92.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (57.7%)
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.3136e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.41470739627607 (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.31 us (2.2%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 218.32 us (91.8%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.8%)
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.2831e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.12852295151869 (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.28 us (2.4%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 201.48 us (91.3%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.0%)
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.2228e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.563090505567125 (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.18 us (2.1%)
patch tree reduce : 1.80 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 : 232.97 us (92.3%)
LB move op cnt : 0
LB apply : 3.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.5%)
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 | 4.2930e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.22158938934072 (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.43 us (2.5%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 201.00 us (91.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (57.1%)
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.1953e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.306355916031116 (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.40 us (2.3%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 218.26 us (91.7%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.4%)
Info: cfl dt = 0.001705580336415975 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.84275122663937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10404039778325466, dt = 0.001705580336415975
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 201.85 us (91.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.8%)
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 | 4.2130e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.47144042093783 (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.36 us (2.3%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 200.39 us (86.7%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (62.6%)
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.3078e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.36006983080445 (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.46 us (2.5%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 197.51 us (90.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (58.9%)
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 | 4.3419e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.67938084519237 (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.55 us (2.3%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 223.06 us (91.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.4%)
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.2830e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.12774071273765 (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 : 5.69 us (2.5%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 203.98 us (91.2%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.3%)
Info: cfl dt = 0.0017055810008860172 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.771473733670035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11256830018352122, dt = 0.0017055810008860172
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 196.79 us (91.1%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (54.5%)
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.3324e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.59048197536241 (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.30 us (2.2%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 216.33 us (91.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (55.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.3465e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.72229114473212 (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.67 us (2.4%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 217.48 us (91.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (63.9%)
Info: cfl dt = 0.0017055833149641653 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.85862259598657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11768504482856307, dt = 0.0017055833149641653
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 206.59 us (91.4%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (52.7%)
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.2596e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.90875196886847 (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.70 us (2.5%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 203.78 us (91.0%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.1%)
Info: cfl dt = 0.0017055876802562083 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.52953003391743 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12109621319448344, dt = 0.0017055876802562083
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 203.54 us (91.3%)
LB move op cnt : 0
LB apply : 2.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (54.6%)
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 | 3.7579e+05 | 65536 | 2 | 1.744e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.207802219242154 (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 : 5.39 us (2.2%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 223.92 us (92.0%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (57.6%)
Info: cfl dt = 0.0017055974012012492 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0154e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.620864376069214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12450739248347116, dt = 0.0017055974012012492
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 201.73 us (91.2%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.9%)
Info: cfl dt = 0.0017056058328428962 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0431e+05 | 65536 | 2 | 1.621e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.880214991007975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12621298988467242, dt = 0.0017056058328428962
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 218.13 us (91.9%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.4%)
Info: cfl dt = 0.0017056179530811253 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9841e+05 | 65536 | 2 | 1.645e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.32773264177353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12791859571751532, dt = 0.0017056179530811253
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 212.39 us (91.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (52.9%)
Info: cfl dt = 0.0017056351635604122 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1624e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.998902971091006 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12962421367059646, dt = 0.0017056351635604122
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.59 us (1.1%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 216.20 us (91.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.6%)
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.0931e+05 | 65536 | 2 | 1.601e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.34967939489007 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13132984883415688, 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.61 us (2.5%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 205.33 us (91.2%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (55.2%)
Info: cfl dt = 0.0017056927995209384 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1171e+05 | 65536 | 2 | 1.592e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.575439159463286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13303550814568874, dt = 0.0017056927995209384
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.30 us (0.6%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 206.53 us (91.2%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (49.5%)
Info: cfl dt = 0.001705738711460588 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1028e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.441365359705586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13474120094520967, dt = 0.001705738711460588
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 207.65 us (91.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (53.1%)
Info: cfl dt = 0.001705800954561153 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0959e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.37851006995605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13644693965667026, dt = 0.001705800954561153
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 203.51 us (90.9%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (51.7%)
Info: cfl dt = 0.0017058844150527152 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0858e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.284913520214744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13815274061123142, dt = 0.0017058844150527152
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 228.97 us (91.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (55.8%)
Info: cfl dt = 0.0017059951246116466 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.72129781750939 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13985862502628413, dt = 0.0017059951246116466
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 208.96 us (91.5%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (51.7%)
Info: cfl dt = 0.0017061404328372687 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0656e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.10025780343586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14156462015089577, dt = 0.0017061404328372687
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.47 us (1.1%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 209.96 us (91.0%)
LB move op cnt : 0
LB apply : 3.40 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (53.4%)
Info: cfl dt = 0.0017063291796756365 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5500e+05 | 65536 | 2 | 1.181e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.015514535318616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14327076058373303, dt = 0.0017063291796756365
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.21 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 237.11 us (92.0%)
LB move op cnt : 0
LB apply : 3.58 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (59.3%)
Info: cfl dt = 0.001706571860325012 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5817e+05 | 65536 | 2 | 1.174e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.31832230836184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14497708976340867, dt = 0.001706571860325012
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.30 us (1.1%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 189.23 us (90.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.1%)
Info: cfl dt = 0.0017068807740532352 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7955e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.33017892309201 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1466836616237337, dt = 0.0017068807740532352
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 231.39 us (92.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (60.3%)
Info: cfl dt = 0.0017072701476703654 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7896e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.28462280560822 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14839054239778693, dt = 0.0016094576022130658
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 188.70 us (90.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.0%)
Info: cfl dt = 0.0017077223002604624 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7590e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.91529931309668 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 147.82973215 (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 12.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 : 3.48 us (50.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 : 681.00 ns (0.2%)
patch tree reduce : 1.28 us (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.2%)
LB compute : 388.70 us (97.7%)
LB move op cnt : 0
LB apply : 2.94 us (0.7%)
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 : 8.80 us (2.5%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 571.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 691.00 ns (0.2%)
LB compute : 333.57 us (94.3%)
LB move op cnt : 0
LB apply : 2.81 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (64.0%)
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.8467e+05 | 65536 | 2 | 2.302e-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.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.82 us (2.0%)
patch tree reduce : 2.36 us (0.8%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 266.21 us (92.8%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (58.8%)
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 | 5.8292e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0115331498740545 (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 : 6.06 us (2.1%)
patch tree reduce : 2.20 us (0.8%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 262.58 us (92.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (61.2%)
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 | 6.0106e+05 | 65536 | 2 | 1.090e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.026250143008905 (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 : 5.89 us (2.2%)
patch tree reduce : 2.36 us (0.9%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 243.30 us (92.0%)
LB move op cnt : 0
LB apply : 3.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (60.6%)
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 | 5.9364e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.871586817733371 (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.63 us (2.0%)
patch tree reduce : 2.40 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 263.26 us (92.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.6%)
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 | 6.0267e+05 | 65536 | 2 | 1.087e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8343674005329795 (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.56 us (2.1%)
patch tree reduce : 2.32 us (0.9%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 248.75 us (92.3%)
LB move op cnt : 0
LB apply : 3.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.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 | 5.2271e+05 | 65536 | 2 | 1.254e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2537808565072734 (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.68 us (2.5%)
patch tree reduce : 2.33 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 209.02 us (91.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (57.4%)
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 | 6.1336e+05 | 65536 | 2 | 1.068e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.746249232270179 (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.70 us (2.4%)
patch tree reduce : 2.26 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 218.48 us (91.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (62.6%)
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.8932e+05 | 65536 | 2 | 1.339e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9396731436232626 (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 : 5.43 us (2.2%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 222.43 us (91.4%)
LB move op cnt : 0
LB apply : 3.63 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (60.4%)
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 | 6.1261e+05 | 65536 | 2 | 1.070e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.627440240635141 (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.91 us (2.5%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 213.11 us (91.3%)
LB move op cnt : 0
LB apply : 3.54 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.4%)
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.4802e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6190361954538224 (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.57 us (2.4%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 214.37 us (91.5%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (60.1%)
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 | 5.2042e+05 | 65536 | 2 | 1.259e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0075844522716677 (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 : 5.38 us (2.2%)
patch tree reduce : 2.34 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 218.93 us (91.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (59.3%)
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 | 5.8821e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3642893621487 (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 : 5.77 us (2.8%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 189.37 us (90.7%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (57.5%)
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 | 5.9969e+05 | 65536 | 2 | 1.093e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.397796529722948 (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.39 us (2.6%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 190.08 us (90.8%)
LB move op cnt : 0
LB apply : 3.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (53.6%)
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 | 6.0802e+05 | 65536 | 2 | 1.078e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.415261119686228 (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.80 us (2.3%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 234.45 us (92.0%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (60.8%)
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 | 4.5167e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5168248289424926 (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 : 6.01 us (2.6%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 206.68 us (90.9%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (55.8%)
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 | 4.5157e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.497620804191977 (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.52 us (2.1%)
patch tree reduce : 2.46 us (1.0%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 237.84 us (92.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.3%)
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 | 4.5342e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4904430869483156 (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.79 us (2.5%)
patch tree reduce : 2.49 us (1.1%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 213.96 us (91.0%)
LB move op cnt : 0
LB apply : 3.51 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.0%)
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 | 4.5048e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.458228901081701 (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 : 5.88 us (2.6%)
patch tree reduce : 2.46 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 208.81 us (91.1%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (59.7%)
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 | 4.5149e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4486976302531724 (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 : 5.79 us (2.4%)
patch tree reduce : 2.51 us (1.1%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 217.16 us (91.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (57.2%)
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 | 4.5449e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4507332314604655 (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 : 6.17 us (2.4%)
patch tree reduce : 2.27 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 237.78 us (91.9%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.3%)
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 | 4.5535e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.441972237567575 (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.37 us (2.4%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 206.41 us (91.3%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (60.9%)
Info: cfl dt = 9.664668265475522e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3995e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3471719935218243 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00223768450698276, dt = 9.664668265475522e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.49 us (1.1%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 213.06 us (91.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.7%)
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 | 4.2913e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2782521098087027 (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.62 us (2.5%)
patch tree reduce : 2.52 us (1.1%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 208.47 us (91.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.1%)
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.3217e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.283695775271817 (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 : 5.38 us (2.3%)
patch tree reduce : 3.57 us (1.5%)
gen split merge : 1.68 us (0.7%)
split / merge op : 0/0
apply split merge : 1.52 us (0.6%)
LB compute : 212.44 us (90.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (54.7%)
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.2868e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.255224324771935 (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.64 us (2.5%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 207.95 us (91.1%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (54.3%)
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 | 4.2978e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.251465473664571 (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 : 5.62 us (2.5%)
patch tree reduce : 2.42 us (1.1%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 208.54 us (91.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (50.5%)
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.2969e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2419582555846524 (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.53 us (2.3%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 220.67 us (91.8%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.2%)
Info: cfl dt = 9.427420442175474e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2299501065744467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028112677719395788, dt = 9.427420442175474e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.35 us (1.0%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 221.33 us (91.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (59.4%)
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.2491e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2004712838526035 (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.36 us (2.1%)
patch tree reduce : 2.43 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 240.45 us (92.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (57.0%)
Info: cfl dt = 9.363298724961118e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3489e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2442772064817933 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002999487597896607, dt = 9.363298724961118e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.43 us (1.1%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 210.75 us (91.4%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (55.9%)
Info: cfl dt = 9.333535314768469e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1918e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1560001877047275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0030931205851462184, dt = 9.333535314768469e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 209.29 us (91.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (56.3%)
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.2881e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1985474768419597 (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 : 6.06 us (2.5%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 221.06 us (91.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (60.7%)
Info: cfl dt = 9.278166737417006e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1840387234761764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003279507785969837, dt = 9.278166737417006e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.44 us (1.1%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 209.90 us (91.3%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (55.8%)
Info: cfl dt = 9.252406951761002e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3065e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1948813841659445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003372289453344007, dt = 9.252406951761002e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.24 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 245.41 us (92.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (60.6%)
Info: cfl dt = 9.227836587161001e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.136861722744712 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003464813522861617, dt = 9.227836587161001e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 223.35 us (91.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.6%)
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.2579e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1583393186767568 (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 : 5.58 us (2.4%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 211.58 us (91.4%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (57.1%)
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.2569e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1523208613046765 (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.31 us (2.4%)
patch tree reduce : 2.35 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 203.60 us (91.1%)
LB move op cnt : 0
LB apply : 3.53 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (60.9%)
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 | 4.3356e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1868043557891594 (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 : 5.52 us (2.5%)
patch tree reduce : 2.52 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 203.92 us (91.0%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (58.3%)
Info: cfl dt = 9.140235494726998e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2235e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1252866470167753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003832562382963844, dt = 9.140235494726998e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 217.73 us (91.8%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.1%)
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 | 4.2624e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1401250570524137 (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.92 us (2.5%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 215.22 us (91.5%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (55.6%)
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 | 4.2908e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1497656741994424 (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.54 us (2.4%)
patch tree reduce : 2.42 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 214.22 us (91.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (60.1%)
Info: cfl dt = 9.084292773674415e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2386e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.119253441735397 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00410619313915799, dt = 9.084292773674415e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 231.53 us (92.2%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (59.3%)
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 | 4.3463e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.168852796469012 (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.44 us (2.3%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 221.54 us (91.8%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.6%)
Info: cfl dt = 9.050983378275318e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1735860015253214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004287708719401956, dt = 9.050983378275318e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.33 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 208.81 us (91.2%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (56.0%)
Info: cfl dt = 9.035411983983323e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.11509079782379 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004378218553184709, dt = 9.035411983983323e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 215.46 us (91.6%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (55.8%)
Info: cfl dt = 9.020517955268956e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2821e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.12532798150543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004468572673024542, dt = 9.020517955268956e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.49 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 263.62 us (93.1%)
LB move op cnt : 0
LB apply : 3.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (61.1%)
Info: cfl dt = 9.006270087519536e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2083e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.085259085079885 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004558777852577232, dt = 9.006270087519536e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.24 us (0.8%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 252.60 us (92.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (60.7%)
Info: cfl dt = 8.992638945783674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8945e+05 | 65536 | 2 | 1.683e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.926701635947751 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0046488405534524276, dt = 8.992638945783674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (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.16 us (0.4%)
LB compute : 246.59 us (92.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (67.7%)
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 | 3.8323e+05 | 65536 | 2 | 1.710e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8931033296076245 (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.31 us (2.3%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 207.19 us (91.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (54.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 | 3.9187e+05 | 65536 | 2 | 1.672e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9329595312373922 (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.37 us (2.2%)
patch tree reduce : 2.23 us (0.9%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 219.83 us (91.7%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.6%)
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 | 3.6357e+05 | 65536 | 2 | 1.803e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7908686966000718 (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.25 us (2.3%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 204.59 us (91.5%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (57.0%)
Info: cfl dt = 8.943748102439045e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9052850402179191 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0050077858372727085, dt = 8.943748102439045e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 231.18 us (92.2%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (61.0%)
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 | 3.6079e+05 | 65536 | 2 | 1.816e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7725610079062628 (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.40 us (2.4%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 206.99 us (91.3%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (59.2%)
Info: cfl dt = 8.922348292158214e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8719e+05 | 65536 | 2 | 1.693e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8999098172857594 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005186551445728773, dt = 8.922348292158214e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 204.96 us (91.3%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (55.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 | 3.6405e+05 | 65536 | 2 | 1.800e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.784302508937722 (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.39 us (2.1%)
patch tree reduce : 2.35 us (0.9%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 242.46 us (92.2%)
LB move op cnt : 0
LB apply : 3.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.5%)
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 | 3.9335e+05 | 65536 | 2 | 1.666e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9257373949248568 (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.41 us (2.1%)
patch tree reduce : 2.23 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 237.41 us (92.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (59.2%)
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 | 3.8941e+05 | 65536 | 2 | 1.683e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9043906234324086 (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.73 us (2.1%)
patch tree reduce : 2.66 us (1.0%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 249.84 us (92.4%)
LB move op cnt : 0
LB apply : 3.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (61.3%)
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 | 3.7990e+05 | 65536 | 2 | 1.725e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8559729369271583 (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.84 us (2.5%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.29 us (0.6%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 211.13 us (91.3%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.3%)
Info: cfl dt = 8.876422037058782e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8525814195561023 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005631709788046568, dt = 8.876422037058782e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.21 us (0.9%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 234.72 us (92.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (55.9%)
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 | 3.7315e+05 | 65536 | 2 | 1.756e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.819472697509834 (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.49 us (2.3%)
patch tree reduce : 2.29 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 221.83 us (91.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.8%)
Info: cfl dt = 8.860718120336846e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9297e+05 | 65536 | 2 | 1.668e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9143720328991303 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00580915796074434, dt = 8.860718120336846e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.52 us (1.1%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 209.27 us (91.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (54.6%)
Info: cfl dt = 8.853376527164227e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8809e+05 | 65536 | 2 | 1.689e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8889626689431616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005897765141947708, dt = 8.853376527164227e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.12 us (0.8%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 242.55 us (92.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.6%)
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.0781e+05 | 65536 | 2 | 1.607e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9832875916502963 (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.31 us (2.3%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 214.95 us (91.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (55.2%)
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.0402e+05 | 65536 | 2 | 1.622e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9633349493170198 (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.58 us (2.4%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 213.44 us (91.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.2%)
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.0553e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9691765927600784 (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.36 us (2.3%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 212.75 us (91.3%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (50.2%)
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 | 3.9064e+05 | 65536 | 2 | 1.678e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8954927889010544 (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.35 us (2.3%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 217.64 us (91.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (50.3%)
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.9817e+05 | 65536 | 2 | 1.646e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9306716404665403 (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 : 5.43 us (2.3%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 216.61 us (91.5%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (55.4%)
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 | 3.8115e+05 | 65536 | 2 | 1.719e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8469057827289974 (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.50 us (2.4%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 211.57 us (91.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (53.2%)
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 | 3.7884e+05 | 65536 | 2 | 1.730e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.834572627712702 (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 : 5.66 us (2.5%)
patch tree reduce : 2.40 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 210.47 us (91.4%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (60.8%)
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 | 3.9747e+05 | 65536 | 2 | 1.649e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9236093599107977 (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.60 us (2.2%)
patch tree reduce : 2.29 us (0.9%)
gen split merge : 1.41 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 233.98 us (91.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (59.6%)
Info: cfl dt = 8.800355853939222e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0599e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9637373585150686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0066922867220378926, dt = 8.800355853939222e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.40 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 238.11 us (92.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.7%)
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.0411e+05 | 65536 | 2 | 1.622e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9535569299417754 (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.39 us (2.0%)
patch tree reduce : 2.27 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 246.27 us (92.5%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (52.8%)
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.0443e+05 | 65536 | 2 | 1.620e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9540776317172805 (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.58 us (2.5%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 205.80 us (91.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (55.9%)
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.0297e+05 | 65536 | 2 | 1.626e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9460054815304004 (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 : 5.81 us (2.6%)
patch tree reduce : 2.36 us (1.1%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 202.74 us (90.8%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (54.8%)
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 | 4.0441e+05 | 65536 | 2 | 1.621e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9520425092695348 (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.76 us (2.5%)
patch tree reduce : 2.39 us (1.1%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 205.50 us (90.8%)
LB move op cnt : 0
LB apply : 3.48 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (55.6%)
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.0122e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9357522695682947 (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.58 us (1.8%)
patch tree reduce : 2.32 us (0.8%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 277.26 us (91.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.7%)
Info: cfl dt = 8.775584754126195e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9540e+05 | 65536 | 2 | 1.657e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9068571521050675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0072196539372607, dt = 8.775584754126195e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.54 us (0.9%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 261.97 us (92.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.6%)
Info: cfl dt = 8.772117902663719e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8530619180029337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007307409784801962, dt = 8.772117902663719e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.38 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 265.13 us (92.9%)
LB move op cnt : 0
LB apply : 3.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (58.6%)
Info: cfl dt = 8.768820866995771e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9189e+05 | 65536 | 2 | 1.672e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.888399164635311 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007395130963828599, dt = 8.768820866995771e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.22 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 238.51 us (92.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.0%)
Info: cfl dt = 8.765687055195057e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9294e+05 | 65536 | 2 | 1.668e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8927504022101689 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007482819172498557, dt = 8.765687055195057e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.42 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 231.14 us (91.8%)
LB move op cnt : 0
LB apply : 3.71 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.5%)
Info: cfl dt = 8.76271012568268e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9713e+05 | 65536 | 2 | 1.650e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9122352801087674 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007570476043050507, dt = 8.76271012568268e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 217.70 us (91.6%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (54.9%)
Info: cfl dt = 8.759883976036592e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8390e+05 | 65536 | 2 | 1.707e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8479207937787097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007658103144307334, dt = 8.759883976036592e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 218.01 us (91.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.2%)
Info: cfl dt = 8.757202732461465e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9426e+05 | 65536 | 2 | 1.662e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8971694612174757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0077457019840676995, dt = 8.757202732461465e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.42 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 217.08 us (91.6%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (58.0%)
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.9139e+05 | 65536 | 2 | 1.674e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8827781841781286 (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.54 us (2.3%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 217.09 us (91.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (55.9%)
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.9613e+05 | 65536 | 2 | 1.654e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9050018962536182 (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.75 us (2.3%)
patch tree reduce : 2.34 us (1.0%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 224.48 us (91.6%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (59.2%)
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.9849e+05 | 65536 | 2 | 1.645e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9158563751158946 (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.50 us (2.2%)
patch tree reduce : 2.33 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 235.32 us (92.0%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (56.9%)
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 | 4.0083e+05 | 65536 | 2 | 1.635e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9265910473443768 (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.75 us (2.3%)
patch tree reduce : 2.30 us (0.9%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 226.80 us (91.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (63.3%)
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.9515e+05 | 65536 | 2 | 1.658e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.898841640576568 (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.47 us (2.3%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 1.37 us (0.6%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 216.94 us (91.5%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (55.5%)
Info: cfl dt = 8.743855789867164e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9922e+05 | 65536 | 2 | 1.642e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9179139204574633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00827077883486441, dt = 8.743855789867164e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 13.59 us (5.7%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 209.10 us (87.1%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (61.7%)
Info: cfl dt = 8.742041681196495e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9052604904617008 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008358217392763082, dt = 8.742041681196495e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 207.23 us (91.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.1%)
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.9803e+05 | 65536 | 2 | 1.647e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9113912795810795 (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 (2.3%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 211.12 us (91.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (55.1%)
Info: cfl dt = 8.7387244641099e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9808e+05 | 65536 | 2 | 1.646e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9112560462034145 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008533041135972256, dt = 8.7387244641099e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.34 us (0.9%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 246.43 us (92.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (59.2%)
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 | 3.9261e+05 | 65536 | 2 | 1.669e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8846336113640942 (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.50 us (2.3%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 217.96 us (91.5%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (56.1%)
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 | 3.9337e+05 | 65536 | 2 | 1.666e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8879850230754613 (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 : 5.72 us (2.5%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 210.27 us (91.4%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (58.3%)
Info: cfl dt = 8.734465350520199e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9232e+05 | 65536 | 2 | 1.670e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8826237504078382 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008795158458199078, dt = 8.734465350520199e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 208.04 us (91.3%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.6%)
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 | 3.9955e+05 | 65536 | 2 | 1.640e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9170500373598112 (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.26 us (2.3%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 207.79 us (91.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (62.3%)
Info: cfl dt = 8.73205978792968e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.024375611524404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008969835327321925, dt = 8.73205978792968e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.33 us (0.9%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 253.37 us (92.7%)
LB move op cnt : 0
LB apply : 3.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (55.5%)
Info: cfl dt = 8.73097665393995e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2544e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0406933638857168 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009057155925201222, dt = 8.73097665393995e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.50 us (1.1%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 209.89 us (91.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (59.3%)
Info: cfl dt = 8.72996890553157e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1631145449198774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009144465691740622, dt = 8.72996890553157e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 18.15 us (6.7%)
patch tree reduce : 2.67 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 239.56 us (88.1%)
LB move op cnt : 0
LB apply : 3.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.2%)
Info: cfl dt = 8.729033405008342e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8355e+05 | 65536 | 2 | 1.355e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3188878574749876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009231765380795938, dt = 8.729033405008342e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 243.82 us (92.4%)
LB move op cnt : 0
LB apply : 3.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (59.2%)
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 | 6.0342e+05 | 65536 | 2 | 1.086e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.893393728185852 (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.30 us (2.4%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 205.12 us (91.3%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (55.5%)
Info: cfl dt = 8.727367155498259e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1396e+05 | 65536 | 2 | 1.067e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9436294491706567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009406337386117859, dt = 8.727367155498259e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.32 us (0.6%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 190.20 us (90.4%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (57.1%)
Info: cfl dt = 8.726630678300142e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9654e+05 | 65536 | 2 | 1.099e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.859859114071515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009493611057672841, dt = 8.726630678300142e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.5%)
LB compute : 193.11 us (90.9%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.9%)
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 | 6.0443e+05 | 65536 | 2 | 1.084e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.897458571929462 (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.31 us (2.6%)
patch tree reduce : 1.95 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 183.23 us (90.6%)
LB move op cnt : 0
LB apply : 2.93 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (60.2%)
Info: cfl dt = 8.725337464050766e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0870e+05 | 65536 | 2 | 1.077e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.91766438106403 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009668136914308645, dt = 8.725337464050766e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 217.44 us (91.6%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (62.9%)
Info: cfl dt = 8.72477559685848e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1752e+05 | 65536 | 2 | 1.266e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4804572929219866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009755390288949152, dt = 8.72477559685848e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.45 us (0.9%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 257.65 us (92.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.9%)
Info: cfl dt = 8.72426695742613e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1420e+05 | 65536 | 2 | 1.275e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4644017117252273 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009842638044917737, dt = 8.72426695742613e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 210.41 us (91.2%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (60.7%)
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.3505e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0849306036986714 (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.70 us (2.5%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 209.57 us (91.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (50.2%)
Info: cfl dt = 8.723400095984955e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9730e+05 | 65536 | 2 | 1.650e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9039223108993106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010017118806571123, dt = 8.723400095984955e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.31 us (0.9%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 238.16 us (92.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (60.0%)
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.1834e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.004666203771256 (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.79 us (2.5%)
patch tree reduce : 2.80 us (1.2%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 215.41 us (91.3%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (62.0%)
Info: cfl dt = 8.722719186276551e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0370128809042183 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010191583182050962, dt = 8.722719186276551e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.59 us (1.2%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 189.90 us (90.4%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (56.2%)
Info: cfl dt = 8.722443286480214e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2531e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.037893222879989 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010278810373913727, dt = 8.722443286480214e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.55 us (1.1%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 211.43 us (91.0%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (63.1%)
Info: cfl dt = 8.722207815076307e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9869703753217731 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010366034806778529, dt = 8.722207815076307e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.44 us (1.1%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 209.69 us (91.2%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (56.6%)
Info: cfl dt = 8.722010906883286e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.061774188003184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010453256884929292, dt = 8.722010906883286e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.50 us (1.2%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 196.30 us (90.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.8%)
Info: cfl dt = 8.721850766700674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1353e+05 | 65536 | 2 | 1.276e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.460411221372144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010540476993998125, dt = 8.721850766700674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.53 us (1.2%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 196.93 us (90.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (55.3%)
Info: cfl dt = 8.721725667014776e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7517e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.755683295605699 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010627695501665133, dt = 8.721725667014776e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.48 us (1.2%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 195.01 us (90.7%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.0%)
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.3268e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.07297716276716 (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.30 us (2.2%)
patch tree reduce : 2.27 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 221.24 us (91.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.0%)
Info: cfl dt = 8.721023117149362e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2376e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.030172587821736 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010802127418498198, dt = 8.721023117149362e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 221.14 us (91.7%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.8%)
Info: cfl dt = 8.720626934646869e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8873e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.820368543289896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010889337649669692, dt = 8.720626934646869e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 221.82 us (91.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.9%)
Info: cfl dt = 8.720275570138365e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0631e+05 | 65536 | 2 | 1.081e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.904464240339935 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01097654391901616, dt = 8.720275570138365e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 194.73 us (90.4%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.3%)
Info: cfl dt = 8.719967184282733e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9092e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.830601274711164 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011063746674717543, dt = 8.719967184282733e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 224.34 us (91.5%)
LB move op cnt : 0
LB apply : 3.82 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (63.6%)
Info: cfl dt = 8.719700001790938e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1183e+05 | 65536 | 2 | 1.071e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9307007437547337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01115094634656037, dt = 8.719700001790938e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.51 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 218.92 us (91.4%)
LB move op cnt : 0
LB apply : 3.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (55.5%)
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 | 6.0488e+05 | 65536 | 2 | 1.083e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8973057513523095 (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.61 us (2.2%)
patch tree reduce : 2.67 us (1.1%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 230.39 us (91.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (55.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 | 6.0360e+05 | 65536 | 2 | 1.086e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.891083008117907 (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.92 us (2.4%)
patch tree reduce : 2.46 us (1.0%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 223.86 us (91.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (61.5%)
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 | 6.1264e+05 | 65536 | 2 | 1.070e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.934339617297572 (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 : 5.71 us (2.6%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 196.67 us (90.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.5%)
Info: cfl dt = 8.719009686068283e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0907e+05 | 65536 | 2 | 1.076e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9171618561168287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011499722181102782, dt = 8.719009686068283e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 223.01 us (91.4%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.2%)
Info: cfl dt = 8.718923762653742e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8125e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7839155017825816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011586912277963466, dt = 8.718923762653742e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 195.89 us (90.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (52.0%)
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 | 6.0019e+05 | 65536 | 2 | 1.092e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8746018345335016 (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.45 us (2.1%)
patch tree reduce : 2.31 us (0.9%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 240.90 us (92.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.0%)
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 | 6.0305e+05 | 65536 | 2 | 1.087e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8882650531152207 (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.69 us (1.1%)
patch tree reduce : 2.31 us (0.4%)
gen split merge : 1.15 us (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 516.35 us (96.2%)
LB move op cnt : 0
LB apply : 3.35 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.1%)
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 | 5.9337e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.841880369216069 (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.59 us (2.6%)
patch tree reduce : 2.60 us (1.2%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 195.86 us (90.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (56.1%)
Info: cfl dt = 8.718882755312887e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0657e+05 | 65536 | 2 | 1.080e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9051088364217157 (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.78 us (2.4%)
patch tree reduce : 2.61 us (1.1%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 219.47 us (91.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (54.1%)
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 | 6.0738e+05 | 65536 | 2 | 1.079e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.146412131257104 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 192.50935680100002 (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 1.84 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.56 us (54.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 : 802.00 ns (0.4%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.4%)
LB compute : 206.49 us (93.9%)
LB move op cnt : 0
LB apply : 4.59 us (2.1%)
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.80 us (3.6%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.3%)
LB compute : 227.05 us (91.7%)
LB move op cnt : 0
LB apply : 2.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.6%)
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 | 5.5449e+05 | 65536 | 2 | 1.182e-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.72 us (2.3%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 225.00 us (90.5%)
LB move op cnt : 0
LB apply : 6.75 us (2.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (61.1%)
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.1971e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.88831559312668 (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.39 us (2.3%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 211.59 us (91.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.4%)
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.1491e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.779290305044953 (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.11 us (2.3%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 203.34 us (91.4%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (55.3%)
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.1109e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6419703385339135 (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.52 us (2.4%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 207.97 us (91.4%)
LB move op cnt : 0
LB apply : 2.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.0%)
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 | 4.1662e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.584489425346207 (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.40 us (2.4%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 205.82 us (91.3%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (55.7%)
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 | 4.2017e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5377614047811083 (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.38 us (2.4%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 206.35 us (91.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (59.3%)
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 | 4.1612e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4631827079627393 (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.21 us (2.3%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 208.35 us (91.6%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.3%)
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 | 4.1201e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.399045312576572 (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.45 us (2.4%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 205.57 us (91.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.2%)
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 | 4.1605e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3860717457122815 (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.48 us (2.4%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 204.88 us (91.3%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (55.3%)
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 | 4.1405e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3391017164511934 (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.46 us (2.4%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 206.57 us (91.6%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (56.1%)
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 | 4.1258e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.298215363092825 (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.46 us (2.4%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 209.78 us (91.4%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (55.8%)
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 | 4.1370e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2761422066623487 (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.35 us (2.3%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 213.08 us (91.7%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.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 | 4.1203e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.244627357991485 (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.51 us (2.4%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 212.72 us (91.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (57.8%)
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.8238e+05 | 65536 | 2 | 1.714e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0659023510399086 (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.08 us (2.2%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 206.84 us (91.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (7.7%)
Info: cfl dt = 9.707339683237169e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1552e+05 | 65536 | 2 | 1.577e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.229050182463664 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015048562307723053, dt = 9.707339683237169e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 234.86 us (92.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.8%)
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.1454e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.210484320555958 (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.42 us (2.3%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 219.70 us (92.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.8%)
Info: cfl dt = 9.608625760598221e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1957732743539884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0016984881644856095, dt = 9.608625760598221e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.61 us (0.7%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 205.72 us (91.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (54.4%)
Info: cfl dt = 9.564792091147682e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1290e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1793405420553427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017945744220915917, dt = 9.564792091147682e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 206.19 us (90.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (54.9%)
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.1308e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 1.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1703700723483546 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018902223430030684, 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.41 us (2.4%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 206.25 us (91.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (55.7%)
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 | 4.1196e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.154944400050449 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0019854489954403633, 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.47 us (2.2%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 227.88 us (92.1%)
LB move op cnt : 0
LB apply : 3.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.8%)
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 | 4.1421e+05 | 65536 | 2 | 1.582e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1572622197065017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0020802612302854018, 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.11 us (2.2%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 209.41 us (91.7%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (52.7%)
Info: cfl dt = 9.398782818609321e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1024e+05 | 65536 | 2 | 1.598e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1273108814881954 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0021746608941103523, dt = 9.398782818609321e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1.92 us (0.4%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.2%)
LB compute : 483.85 us (96.1%)
LB move op cnt : 0
LB apply : 3.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.5%)
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 | 4.1267e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.130585171543798 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0022686487222964456, 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.38 us (2.4%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 203.13 us (91.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.4%)
Info: cfl dt = 9.312983741130986e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.092455604740386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00236222284986327, dt = 9.312983741130986e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 198.84 us (91.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (58.6%)
Info: cfl dt = 9.272135756662835e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1535e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1248620087461902 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0024553526872745798, dt = 9.272135756662835e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 195.54 us (91.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (56.8%)
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 | 5.8427e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.975882982624114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002548074044841208, 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.30 us (2.4%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 205.04 us (91.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (56.6%)
Info: cfl dt = 9.197703109568879e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8372e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.961091218238789 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0026404207001118024, dt = 9.197703109568879e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1.81 us (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.2%)
LB compute : 487.07 us (96.2%)
LB move op cnt : 0
LB apply : 3.11 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.8%)
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 | 5.9914e+05 | 65536 | 2 | 1.094e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.027110825568806 (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.45 us (2.4%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 205.52 us (91.2%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (62.5%)
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 | 6.0994e+05 | 65536 | 2 | 1.074e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0692788198355494 (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.50 us (2.1%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 240.23 us (92.0%)
LB move op cnt : 0
LB apply : 4.57 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.3%)
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 | 6.0234e+05 | 65536 | 2 | 1.088e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.01939044652792 (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.55 us (2.5%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 200.82 us (91.5%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.9%)
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.9009e+05 | 65536 | 2 | 1.337e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4478841768633757 (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.23 us (2.6%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 186.26 us (90.9%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (53.7%)
Info: cfl dt = 9.03456260554408e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8330e+05 | 65536 | 2 | 1.356e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4058660855075704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0030968084842352603, dt = 9.03456260554408e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 213.92 us (91.8%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (54.4%)
Info: cfl dt = 9.009607849952475e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7618e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.859493060462162 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0031871541102907013, dt = 9.009607849952475e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 252.13 us (93.0%)
LB move op cnt : 0
LB apply : 3.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.4%)
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 | 5.7204e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.831074295597246 (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.48 us (2.4%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 210.17 us (91.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (60.6%)
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 | 5.7477e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8375312120418887 (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 : 5.62 us (2.5%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 203.26 us (91.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.7%)
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 | 5.6882e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8018701284980785 (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 : 5.24 us (2.5%)
patch tree reduce : 1.84 us (0.9%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 191.78 us (91.0%)
LB move op cnt : 0
LB apply : 3.40 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.6%)
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 | 5.7439e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.823660896424639 (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.01 us (2.4%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 231.98 us (91.9%)
LB move op cnt : 0
LB apply : 3.53 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (63.3%)
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 | 5.7583e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8256192579899313 (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.96 us (2.4%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 230.98 us (91.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (60.1%)
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 | 4.1634e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.039694980262763 (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.60 us (2.3%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 218.76 us (91.7%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.1%)
Info: cfl dt = 8.893458114370351e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9862910493590098 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003813854249959219, dt = 8.893458114370351e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 217.93 us (92.0%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.6%)
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.0320e+05 | 65536 | 2 | 1.625e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9697755915752018 (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.44 us (2.1%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 237.95 us (92.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (72.6%)
Info: cfl dt = 8.871958047026055e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7600e+05 | 65536 | 2 | 1.377e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.32249871716321 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00399161248229378, dt = 8.871958047026055e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 981.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 190.50 us (90.1%)
LB move op cnt : 0
LB apply : 3.61 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (62.2%)
Info: cfl dt = 8.862054305489142e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6975e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7766780103768776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00408033206276404, dt = 8.862054305489142e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 217.64 us (91.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (60.1%)
Info: cfl dt = 8.852511068037881e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6453e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7481743705712454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0041689526058189316, dt = 8.852511068037881e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 1.79 us (0.9%)
gen split merge : 1.13 us (0.6%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 182.00 us (90.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (62.6%)
Info: cfl dt = 8.843232096838792e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5111e+05 | 65536 | 2 | 1.189e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.679937906392841 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00425747771649931, dt = 8.843232096838792e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 236.12 us (92.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.4%)
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 | 5.6109e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7256195415545212 (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 : 6.03 us (2.9%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 189.25 us (89.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (61.6%)
Info: cfl dt = 8.825306014102056e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6223e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7283748980718094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0044342517078356436, dt = 8.825306014102056e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 1.81 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 176.61 us (90.2%)
LB move op cnt : 0
LB apply : 3.06 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (57.4%)
Info: cfl dt = 8.816671448112625e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6199e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7244474449858767 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004522504767976664, dt = 8.816671448112625e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.86 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 188.72 us (90.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (61.5%)
Info: cfl dt = 8.808308578787944e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6212e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7224456665846657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00461067148245779, dt = 8.808308578787944e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.70 us (0.8%)
gen split merge : 991.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 193.21 us (90.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (55.9%)
Info: cfl dt = 8.800275859493845e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5704e+05 | 65536 | 2 | 1.177e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.69526012938395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00469875456824567, dt = 8.800275859493845e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 872.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 203.72 us (89.5%)
LB move op cnt : 0
LB apply : 3.81 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (58.8%)
Info: cfl dt = 8.792636345506918e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6436e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7281974422588258 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004786757326840608, dt = 8.792636345506918e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 189.39 us (85.5%)
LB move op cnt : 0
LB apply : 15.71 us (7.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (63.1%)
Info: cfl dt = 8.785446576674977e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7069e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.756396029181494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004874683690295678, dt = 8.785446576674977e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 209.20 us (91.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.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 | 5.9896e+05 | 65536 | 2 | 1.094e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.890595108606942 (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 : 5.87 us (2.7%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 199.98 us (90.9%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.3%)
Info: cfl dt = 8.772606813267259e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8449e+05 | 65536 | 2 | 1.353e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.336377396434673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005050325731881922, dt = 8.772606813267259e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 203.73 us (91.2%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (55.1%)
Info: cfl dt = 8.767014078881189e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6187e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.707604630764774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005138051800014595, dt = 8.767014078881189e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.34 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 187.99 us (90.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (54.9%)
Info: cfl dt = 8.761980402256518e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8395e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8122430340330364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0052257219408034065, dt = 8.761980402256518e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 190.67 us (90.4%)
LB move op cnt : 0
LB apply : 3.69 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.4%)
Info: cfl dt = 8.757488866664065e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9462e+05 | 65536 | 2 | 1.102e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.861987067218073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005313341744825972, dt = 8.757488866664065e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.70 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 325.28 us (94.1%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.1%)
Info: cfl dt = 8.753506922338372e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8388e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8088083350654176 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005400916633492612, dt = 8.753506922338372e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.83 us (0.9%)
gen split merge : 952.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 188.66 us (90.7%)
LB move op cnt : 0
LB apply : 3.32 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (59.2%)
Info: cfl dt = 8.749989954904953e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9112e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8423848250993533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005488451702715996, dt = 8.749989954904953e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.78 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 187.45 us (90.3%)
LB move op cnt : 0
LB apply : 3.49 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (64.7%)
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 | 5.9064e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8389204030837045 (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.46 us (0.9%)
patch tree reduce : 1.88 us (0.3%)
gen split merge : 1.29 us (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 595.55 us (96.7%)
LB move op cnt : 0
LB apply : 3.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (59.8%)
Info: cfl dt = 8.744136591402677e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8465e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8091489162970875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005663420455988806, dt = 8.744136591402677e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 191.63 us (90.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (60.4%)
Info: cfl dt = 8.741674162731423e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1575e+05 | 65536 | 2 | 1.271e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4772909087195027 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0057508618219028335, dt = 8.741674162731423e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 216.00 us (91.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.4%)
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 | 5.9179e+05 | 65536 | 2 | 1.107e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8417310992746594 (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.23 us (2.5%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 189.43 us (90.7%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.9%)
Info: cfl dt = 8.73718023657406e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9119e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8381086495945786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005925672198784425, dt = 8.73718023657406e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 208.38 us (91.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (59.4%)
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 | 5.6555e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7143355829329563 (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.21 us (2.5%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 951.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 190.56 us (90.8%)
LB move op cnt : 0
LB apply : 3.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.4%)
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 | 5.9052e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8335348437600616 (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.62 us (2.6%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 190.71 us (89.7%)
LB move op cnt : 0
LB apply : 5.29 us (2.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (66.5%)
Info: cfl dt = 8.731253775091967e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8988e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.829791695165932 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006187726373209267, dt = 8.731253775091967e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.82 us (0.9%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 191.86 us (90.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.0%)
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 | 5.7196e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.743250105696234 (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.86 us (2.6%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 201.00 us (90.9%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (60.2%)
Info: cfl dt = 8.727829567969004e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7469e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.755781618210543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006362333737916691, dt = 8.727829567969004e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.70 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 202.96 us (91.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.8%)
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 | 5.7158e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.740370656278893 (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.21 us (2.5%)
patch tree reduce : 1.76 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 188.37 us (90.9%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.6%)
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 | 5.8421e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8003978020471405 (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.50 us (2.3%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 218.62 us (91.8%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (61.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 | 5.7180e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7405142883083116 (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.50 us (2.7%)
patch tree reduce : 1.75 us (0.9%)
gen split merge : 942.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 184.72 us (90.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.2%)
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 | 5.6209e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6935782818483247 (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.37 us (2.5%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 192.73 us (90.8%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.4%)
Info: cfl dt = 8.7218093839377e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6709e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.717203718274137 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006798588442683715, dt = 8.7218093839377e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 200.26 us (88.5%)
LB move op cnt : 0
LB apply : 6.19 us (2.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.3%)
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 | 5.7572e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7582982924003914 (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.64 us (2.3%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 224.14 us (92.0%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (60.9%)
Info: cfl dt = 8.720605972674996e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2601e+05 | 65536 | 2 | 1.246e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.519917538303404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006973017738926644, dt = 8.720605972674996e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.51 us (0.7%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 202.41 us (91.6%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (60.5%)
Info: cfl dt = 8.720258543136781e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8744e+05 | 65536 | 2 | 1.116e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.814040143540314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0070602237986533934, dt = 8.720258543136781e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 1.79 us (0.9%)
gen split merge : 1.12 us (0.6%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 183.81 us (90.6%)
LB move op cnt : 0
LB apply : 3.16 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (58.5%)
Info: cfl dt = 8.720065857413107e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6969e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7289058584853922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0071474263840847615, dt = 8.720065857413107e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.81 us (0.9%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 192.77 us (90.8%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (61.7%)
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 | 5.6887e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7249535683455965 (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.54 us (2.6%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 195.26 us (91.0%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (57.2%)
Info: cfl dt = 8.720082059053475e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7237e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7416838409747615 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007321827169990451, dt = 8.720082059053475e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.57 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 230.61 us (92.3%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (60.2%)
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 | 5.8898e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8212517571516185 (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.21 us (2.5%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 187.16 us (90.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (58.5%)
Info: cfl dt = 8.720517292976697e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8587e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.806436907294029 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007496230550793842, dt = 8.720517292976697e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.29 us (0.6%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 195.23 us (90.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.6%)
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 | 5.9619e+05 | 65536 | 2 | 1.099e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8559611545655352 (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.56 us (2.3%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 217.62 us (91.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (57.5%)
Info: cfl dt = 8.720958032590433e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6760e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7190728420641235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00767064422447488, dt = 8.720958032590433e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 185.87 us (90.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (59.9%)
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 | 5.7283e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.744186678780385 (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.85 us (2.2%)
patch tree reduce : 2.18 us (0.8%)
gen split merge : 1.44 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 240.73 us (92.0%)
LB move op cnt : 0
LB apply : 3.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (63.2%)
Info: cfl dt = 8.721244935542791e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7814e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7696573831741116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007845064414118664, dt = 8.721244935542791e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 183.67 us (90.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.6%)
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 | 5.7773e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.767756133003826 (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.44 us (2.4%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 211.18 us (91.4%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (55.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.1825e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0037878668608617 (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.54 us (2.4%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 207.39 us (91.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (56.4%)
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.5283e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.16954055452282 (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.57 us (2.3%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 223.17 us (91.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.9%)
Info: cfl dt = 8.722592097934232e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9627e+05 | 65536 | 2 | 1.099e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.856900762955271 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008193932137016961, dt = 8.722592097934232e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.8%)
patch tree reduce : 1.97 us (1.0%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 181.41 us (90.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (54.5%)
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.3793e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0983346406314762 (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.50 us (2.4%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 207.78 us (91.6%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (55.4%)
Info: cfl dt = 8.723415969009607e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.113271239612704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008368387999327778, dt = 8.723415969009607e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 214.64 us (91.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.7%)
Info: cfl dt = 8.723862774923205e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6003e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2044386692304228 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008455622159017875, dt = 8.723862774923205e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 242.46 us (92.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (57.3%)
Info: cfl dt = 8.724339105214605e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8825e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8189970984083126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008542860786767107, dt = 8.724339105214605e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 206.38 us (91.4%)
LB move op cnt : 0
LB apply : 2.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (52.2%)
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 | 5.7425e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.752063805853204 (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.48 us (2.3%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 218.11 us (92.0%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (58.3%)
Info: cfl dt = 8.725395786423686e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8871e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8215295526265787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008717352667553899, dt = 8.725395786423686e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 217.80 us (87.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (62.3%)
Info: cfl dt = 8.725982226301726e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8686e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8127998555002174 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008804606625418135, dt = 8.725982226301726e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 225.88 us (92.1%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (59.4%)
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 | 5.6641e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7150086053912315 (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 : 5.24 us (2.2%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 217.40 us (92.0%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (60.8%)
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 | 5.6662e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.716189544826086 (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.26 us (2.0%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.29 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 242.96 us (92.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.3%)
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 | 5.7199e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.742153223918478 (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.30 us (2.6%)
patch tree reduce : 1.96 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 182.36 us (90.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.8%)
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 | 5.6585e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.712926728663653 (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.36 us (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 193.18 us (90.8%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.3%)
Info: cfl dt = 8.7295411560744e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6163e+05 | 65536 | 2 | 1.167e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.692935145886459 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0092409727575833, dt = 8.7295411560744e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 207.50 us (91.3%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (64.5%)
Info: cfl dt = 8.73037236739586e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6556e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.712030376152775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009328268169144043, dt = 8.73037236739586e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 203.21 us (91.4%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.8%)
Info: cfl dt = 8.731238145567089e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3868e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.103816275795223 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009415571892818001, dt = 8.731238145567089e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.64 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 196.31 us (91.0%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (62.8%)
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.2153e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0217569011271843 (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 : 5.56 us (2.3%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 217.48 us (91.7%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.7%)
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 | 5.4310e+05 | 65536 | 2 | 1.207e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6050769673427356 (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 : 5.68 us (2.5%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 207.46 us (91.4%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (60.5%)
Info: cfl dt = 8.734011957762704e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6740e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7219173614010526 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00967753609374186, dt = 8.734011957762704e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 215.24 us (91.6%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (65.6%)
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 | 3.7816e+05 | 65536 | 2 | 1.733e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.814328147253426 (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.49 us (2.0%)
patch tree reduce : 1.58 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 249.65 us (92.8%)
LB move op cnt : 0
LB apply : 3.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (54.4%)
Info: cfl dt = 8.736000605739382e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0211444030491053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009852226164066278, dt = 8.736000605739382e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 219.90 us (91.9%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.1%)
Info: cfl dt = 8.737026424309857e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2094e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0200299571124405 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009939586170123672, dt = 8.737026424309857e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 233.54 us (92.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.7%)
Info: cfl dt = 8.738070333473153e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0757e+05 | 65536 | 2 | 1.608e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.95607736910961 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010026956434366772, dt = 8.738070333473153e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.60 us (0.7%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 210.08 us (91.6%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.9%)
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.1311e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9828954268914647 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010114337137701504, 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.20 us (2.2%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 212.16 us (91.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.1%)
Info: cfl dt = 8.740210242693091e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9656e+05 | 65536 | 2 | 1.653e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.903705826281767 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010201728452714418, dt = 8.740210242693091e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.81 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 275.88 us (93.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.6%)
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 | 4.1856e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.009574543800229 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010289130555141348, 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.59 us (2.3%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 223.85 us (91.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.3%)
Info: cfl dt = 8.742430944622611e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9574e+05 | 65536 | 2 | 1.656e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9002609134758632 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010376543636615007, dt = 8.742430944622611e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 207.52 us (91.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (61.3%)
Info: cfl dt = 8.743580794273595e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0346e+05 | 65536 | 2 | 1.624e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9375428114058386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010463967946061234, dt = 8.743580794273595e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 201.90 us (91.4%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (58.4%)
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.1820e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0085951643479616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01055140375400397, 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.56 us (2.5%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 204.94 us (90.9%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (59.9%)
Info: cfl dt = 8.745959536505095e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1552e+05 | 65536 | 2 | 1.577e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9959927001765232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01063885132957057, dt = 8.745959536505095e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 205.12 us (91.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (53.9%)
Info: cfl dt = 8.747183960266662e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1779e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.007201950329436 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01072631092493562, dt = 8.747183960266662e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 206.80 us (91.4%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (58.8%)
Info: cfl dt = 8.748427312450498e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1868e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0117341058357936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010813782764538288, dt = 8.748427312450498e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 201.14 us (91.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.4%)
Info: cfl dt = 8.749686562038207e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0985e+05 | 65536 | 2 | 1.599e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9695794563288527 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010901267037662792, dt = 8.749686562038207e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 230.41 us (92.0%)
LB move op cnt : 0
LB apply : 3.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.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.9700e+05 | 65536 | 2 | 1.651e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9081130003273497 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010988763903283174, 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.47 us (1.8%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 291.53 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.19 us (60.7%)
Info: cfl dt = 8.752244754234535e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8330955268802718 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011076273559778665, dt = 8.752244754234535e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.9%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 236.04 us (91.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (60.0%)
Info: cfl dt = 8.753528220074959e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9011e+05 | 65536 | 2 | 1.680e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8755294587783624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01116379600732101, dt = 8.753528220074959e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 215.57 us (91.7%)
LB move op cnt : 0
LB apply : 3.48 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (60.2%)
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.9406e+05 | 65536 | 2 | 1.663e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8947985355918002 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01125133128952176, 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.52 us (2.5%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.39 us (0.6%)
LB compute : 198.29 us (90.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.2%)
Info: cfl dt = 8.756107371734412e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9601e+05 | 65536 | 2 | 1.655e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9044856071745593 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011338879454409895, dt = 8.756107371734412e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 201.45 us (91.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.0%)
Info: cfl dt = 8.757426230084376e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8709e+05 | 65536 | 2 | 1.693e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8618690964797553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01142644052812724, dt = 8.757426230084376e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 230.80 us (92.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (57.8%)
Info: cfl dt = 8.75875602689692e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0229e+05 | 65536 | 2 | 1.629e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9352660204019745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011514014790428084, dt = 8.75875602689692e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 226.76 us (92.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (60.1%)
Info: cfl dt = 8.760084378530695e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8946e+05 | 65536 | 2 | 1.683e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8738248791993304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011601602350697052, dt = 8.760084378530695e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 207.07 us (91.4%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (61.7%)
Info: cfl dt = 8.76140220378228e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9015e+05 | 65536 | 2 | 1.680e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8774301371528506 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01168920319448236, dt = 8.76140220378228e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.32 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 228.88 us (91.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.7%)
Info: cfl dt = 8.762705564043831e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7721e+05 | 65536 | 2 | 1.737e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.815443575523622 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011776817216520182, dt = 8.762705564043831e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 207.83 us (91.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.5%)
Info: cfl dt = 8.763997803071863e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0161e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9331270430026382 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01186444427216062, dt = 8.763997803071863e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 226.08 us (91.9%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (62.0%)
Info: cfl dt = 8.765271486827174e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0905e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9692538009018212 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01195208425019134, dt = 4.791574980866041e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 204.99 us (91.3%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (55.6%)
Info: cfl dt = 8.765951667778164e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1854e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1016421814790869 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 210.83556665600003 (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.86 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.19 us (48.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 : 841.00 ns (0.3%)
patch tree reduce : 1.14 us (0.5%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.3%)
LB compute : 241.42 us (96.3%)
LB move op cnt : 0
LB apply : 2.61 us (1.0%)
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.59 us (2.8%)
patch tree reduce : 2.38 us (0.8%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.2%)
LB compute : 281.75 us (92.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (61.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 | 5.5912e+05 | 65536 | 2 | 1.172e-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.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.41 us (2.1%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 243.29 us (92.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (62.8%)
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.8355e+05 | 65536 | 2 | 1.355e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.327647027301902 (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.41 us (2.2%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 230.91 us (92.0%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.6%)
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 | 5.6451e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.78139128901464 (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.27 us (2.3%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 861.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 213.98 us (91.8%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.9%)
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 | 5.0481e+05 | 65536 | 2 | 1.298e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2494712321257797 (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.38 us (2.3%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 216.23 us (91.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (54.8%)
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 | 5.7868e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5931932097105768 (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.49 us (2.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 207.60 us (91.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.7%)
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 | 5.8161e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.503890785985463 (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.69 us (2.3%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 225.30 us (91.8%)
LB move op cnt : 0
LB apply : 3.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.7%)
Info: cfl dt = 0.00010473575232693039 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8890e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4604035715188273 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006940852836816068, dt = 0.00010473575232693039
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 222.20 us (91.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.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 | 5.8531e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.367466864650664 (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.28 us (2.3%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.6%)
LB compute : 205.89 us (91.2%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (60.2%)
Info: cfl dt = 0.00010093838217613244 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8787e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.318318192145031 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009015793973082025, dt = 0.00010093838217613244
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 193.73 us (90.7%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (54.6%)
Info: cfl dt = 9.928211610302889e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2862e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3765480697786527 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001002517779484335, dt = 9.928211610302889e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 200.69 us (91.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (55.9%)
Info: cfl dt = 9.781253688156571e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3400032950501166 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001101799895587364, dt = 9.781253688156571e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 209.83 us (91.8%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (54.4%)
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.3693e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.347605525761212 (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.53 us (2.5%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 203.37 us (91.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (59.5%)
Info: cfl dt = 9.515124903138495e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3085458512871675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0012959113071296063, dt = 9.515124903138495e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 205.45 us (91.4%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (54.5%)
Info: cfl dt = 9.422726882496831e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3013813596777224 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013910625561609912, dt = 9.422726882496831e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.03 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 267.79 us (93.2%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (63.6%)
Info: cfl dt = 9.345804464402768e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1168319166527962 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014852898249859594, dt = 9.345804464402768e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 195.96 us (91.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (53.4%)
Info: cfl dt = 9.285856321597754e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1728e+05 | 65536 | 2 | 1.571e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1422307625523307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001578747869629987, dt = 9.285856321597754e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 220.92 us (91.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.3%)
Info: cfl dt = 9.236852173515524e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.133208544829795 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0016716064328459645, dt = 9.236852173515524e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 227.60 us (92.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (62.0%)
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 | 4.1813e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.121567404662313 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017639749545811198, 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.18 us (2.2%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 214.41 us (91.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.6%)
Info: cfl dt = 9.163730568344313e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1251293988816315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018559890599481696, dt = 9.163730568344313e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 209.27 us (87.1%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (60.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 | 4.3503e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1898438826115285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0019476263656316127, 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.81 us (2.4%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 219.19 us (91.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (65.3%)
Info: cfl dt = 9.058898998533344e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.126536661717487 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0020387256757458767, dt = 9.058898998533344e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 234.03 us (92.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (59.3%)
Info: cfl dt = 9.011113763576537e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9787e+05 | 65536 | 2 | 1.647e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.979877612635983 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00212931466573121, dt = 9.011113763576537e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 204.17 us (91.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (57.0%)
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 | 4.2186e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0881719902447333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0022194258033669755, 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.37 us (2.5%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 190.95 us (90.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (56.7%)
Info: cfl dt = 8.92700687629597e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0996444297294636 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023090961421378705, dt = 8.92700687629597e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 206.86 us (91.7%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.6%)
Info: cfl dt = 8.891246897792026e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.156561234775738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00239836621090083, dt = 8.891246897792026e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 212.41 us (91.8%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.1%)
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 | 4.1489e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.026389049363502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0024872786798787504, 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.53 us (2.5%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 203.80 us (91.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.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 | 4.4880e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.184232273666455 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002575876912732445, 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.32 us (2.4%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 206.17 us (91.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (55.4%)
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 | 5.9757e+05 | 65536 | 2 | 1.097e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8993554093433374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0026642028694796684, 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.48 us (2.3%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 218.28 us (92.0%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (58.5%)
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 | 5.4663e+05 | 65536 | 2 | 1.199e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6451962389691985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002752295830273962, 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.53 us (2.4%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 209.23 us (91.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.2%)
Info: cfl dt = 8.773174525067894e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4314e+05 | 65536 | 2 | 1.207e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6224407065546402 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028401919022646473, dt = 8.773174525067894e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 215.26 us (91.7%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (53.1%)
Info: cfl dt = 8.7596117956486e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1829e+05 | 65536 | 2 | 1.264e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4977531195427916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0029279236475153263, dt = 8.7596117956486e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 207.68 us (91.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.5%)
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 | 4.3851e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1100019659253544 (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.37 us (2.6%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 189.12 us (90.7%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (58.5%)
Info: cfl dt = 8.739547749644055e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6530e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7166901113744126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003103005070741844, dt = 8.739547749644055e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 201.85 us (91.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (59.7%)
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 | 5.5789e+05 | 65536 | 2 | 1.175e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.678329081789595 (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.50 us (2.7%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 183.10 us (90.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.2%)
Info: cfl dt = 8.726376393282226e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4695e+05 | 65536 | 2 | 1.198e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.623624105204051 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003277723401843333, dt = 8.726376393282226e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 214.45 us (91.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (58.7%)
Info: cfl dt = 8.721477324134592e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7857e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.773410119146365 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0033649871657761552, dt = 8.721477324134592e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 203.06 us (91.2%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.1%)
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 | 5.8722e+05 | 65536 | 2 | 1.116e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.813268410833389 (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.29 us (2.1%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 232.30 us (92.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.7%)
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 | 5.4859e+05 | 65536 | 2 | 1.195e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6269624425163434 (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 : 5.41 us (2.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 204.59 us (91.4%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.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.8663e+05 | 65536 | 2 | 1.347e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.329237211105874 (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.96 us (2.8%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 192.20 us (90.7%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.6%)
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 | 3.9633e+05 | 65536 | 2 | 1.654e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8962817580404387 (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.73 us (2.5%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 213.53 us (91.6%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (55.5%)
Info: cfl dt = 8.7034784976784e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0820e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9523014288548401 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0038006784288579475, dt = 8.7034784976784e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 214.49 us (91.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.9%)
Info: cfl dt = 8.70027323848316e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8924e+05 | 65536 | 2 | 1.684e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8609332430283538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0038877132138347313, dt = 8.70027323848316e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.41 us (0.6%)
LB compute : 211.35 us (91.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (55.0%)
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 | 4.0253e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9237512734879156 (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.72 us (2.6%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 201.70 us (91.1%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (55.9%)
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.0727e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.945735764518575 (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.22 us (2.3%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 212.07 us (91.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (62.0%)
Info: cfl dt = 8.691306630150775e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0196e+05 | 65536 | 2 | 1.630e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9197124524346194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004148629220506452, dt = 8.691306630150775e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 216.39 us (91.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (62.7%)
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 | 3.9990e+05 | 65536 | 2 | 1.639e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9092122782813459 (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.45 us (2.1%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 242.79 us (92.6%)
LB move op cnt : 0
LB apply : 3.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (62.5%)
Info: cfl dt = 8.686349410697862e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0661e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9406568736990755 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004322428609797749, dt = 8.686349410697862e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 237.54 us (92.3%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (54.6%)
Info: cfl dt = 8.684496043784133e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0055e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9112366870240265 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004409292103904728, dt = 8.684496043784133e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 198.18 us (90.9%)
LB move op cnt : 0
LB apply : 3.47 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.5%)
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.0419e+05 | 65536 | 2 | 1.621e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9282123099146753 (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.45 us (2.1%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 244.59 us (92.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.6%)
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.0106e+05 | 65536 | 2 | 1.634e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.912954583711977 (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.58 us (2.6%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 195.68 us (90.9%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (58.1%)
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.0502e+05 | 65536 | 2 | 1.618e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9316233717794935 (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.57 us (2.4%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 207.99 us (91.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.9%)
Info: cfl dt = 8.681488641487768e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0152e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.91481560950153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004756605425777744, dt = 8.681488641487768e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 231.06 us (92.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.8%)
Info: cfl dt = 8.681727977092715e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9502e+05 | 65536 | 2 | 1.659e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8837983886060519 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004843420312192622, dt = 8.681727977092715e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 209.26 us (91.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (58.9%)
Info: cfl dt = 8.682280138964456e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7228e+05 | 65536 | 2 | 1.760e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7754196726990747 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004930237591963549, dt = 8.682280138964456e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 12.16 us (5.0%)
LB compute : 210.33 us (87.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (58.5%)
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 | 3.9443e+05 | 65536 | 2 | 1.662e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8811855501978758 (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 : 5.34 us (2.1%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 230.35 us (92.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (61.7%)
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.0883e+05 | 65536 | 2 | 1.603e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.950046365255006 (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 : 5.58 us (2.4%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 215.17 us (91.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (58.1%)
Info: cfl dt = 8.685291030986366e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0156e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9155720629851192 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005190732450960666, dt = 8.685291030986366e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 199.32 us (91.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (60.3%)
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 | 3.9601e+05 | 65536 | 2 | 1.655e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8893599642636703 (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.61 us (2.5%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 201.54 us (91.1%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (54.2%)
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 | 3.9794e+05 | 65536 | 2 | 1.647e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8988542667154342 (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.36 us (2.3%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 212.10 us (91.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.4%)
Info: cfl dt = 8.689458894013917e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9105e+05 | 65536 | 2 | 1.676e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8662814823316853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005451330955153412, dt = 8.689458894013917e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.34 us (0.6%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 199.53 us (90.3%)
LB move op cnt : 0
LB apply : 3.43 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.6%)
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 | 3.9588e+05 | 65536 | 2 | 1.655e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.88961833671966 (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.42 us (2.5%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 200.07 us (91.4%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (52.5%)
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.0675e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9418882524627632 (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.87 us (2.4%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 221.13 us (91.4%)
LB move op cnt : 0
LB apply : 3.80 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (61.5%)
Info: cfl dt = 8.694169490018777e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1146e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9646938681159203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0057120612237049825, dt = 8.694169490018777e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.24 us (0.4%)
gen split merge : 1.11 us (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.2%)
LB compute : 511.21 us (96.2%)
LB move op cnt : 0
LB apply : 3.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.1%)
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.0221e+05 | 65536 | 2 | 1.629e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9208745612223255 (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 : 6.39 us (2.6%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 220.41 us (91.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (62.7%)
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.0731e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9456319515647436 (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.02 us (2.0%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 226.22 us (92.1%)
LB move op cnt : 0
LB apply : 3.85 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (57.7%)
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.0870e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9526320600065883 (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.63 us (2.6%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 196.09 us (90.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.0%)
Info: cfl dt = 8.700870606776871e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8795e+05 | 65536 | 2 | 1.689e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8538436836118217 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006059925615230132, dt = 8.700870606776871e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 212.88 us (91.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (44.2%)
Info: cfl dt = 8.702864796808551e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8895696380401523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006146934321297901, dt = 8.702864796808551e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.27 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 190.33 us (90.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (54.5%)
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 | 3.9965e+05 | 65536 | 2 | 1.640e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.910565818411211 (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.35 us (1.0%)
patch tree reduce : 1.82 us (0.3%)
gen split merge : 1.11 us (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.2%)
LB compute : 524.05 us (96.5%)
LB move op cnt : 0
LB apply : 3.04 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.1%)
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.9909e+05 | 65536 | 2 | 1.642e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.908372364783495 (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.46 us (2.4%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 203.50 us (91.2%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (52.0%)
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 | 4.2011e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0094455545356595 (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.81 us (2.3%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 235.67 us (92.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (52.5%)
Info: cfl dt = 8.712499060857869e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0183747721036642 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006495185983576526, dt = 8.712499060857869e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 236.38 us (92.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (53.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 | 4.2432e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.030754070513974 (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.73 us (2.1%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 255.94 us (92.6%)
LB move op cnt : 0
LB apply : 3.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.0%)
Info: cfl dt = 8.718024016663649e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.014631231267567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006669463204936413, dt = 8.718024016663649e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 250.54 us (92.7%)
LB move op cnt : 0
LB apply : 2.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (63.1%)
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.8856e+05 | 65536 | 2 | 1.687e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8607857604053153 (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 : 6.07 us (2.7%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 207.68 us (91.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.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.9250e+05 | 65536 | 2 | 1.670e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8799855745266105 (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.62 us (2.4%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 218.55 us (91.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (60.6%)
Info: cfl dt = 8.72246141719488e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9772e+05 | 65536 | 2 | 1.648e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9053439328803845 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006931050003628688, dt = 8.72246141719488e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 255.58 us (92.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (63.7%)
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 | 4.0401e+05 | 65536 | 2 | 1.622e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9357646031465008 (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.70 us (2.3%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 229.77 us (92.1%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (55.9%)
Info: cfl dt = 8.725112420766872e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8842465994236774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007105512672778578, dt = 8.725112420766872e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 237.14 us (92.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.2%)
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 | 3.9024e+05 | 65536 | 2 | 1.679e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.87035796664428 (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.75 us (2.3%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 230.32 us (92.1%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.5%)
Info: cfl dt = 8.727761761486924e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0846e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.958001871203335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007280028108141006, dt = 8.727761761486924e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 221.51 us (91.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (53.1%)
Info: cfl dt = 8.729095225653854e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0486e+05 | 65536 | 2 | 1.619e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9409979848705368 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007367305725755875, dt = 8.729095225653854e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 253.63 us (92.6%)
LB move op cnt : 0
LB apply : 3.71 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.2%)
Info: cfl dt = 8.730405508969355e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9858e+05 | 65536 | 2 | 1.644e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.91120888222296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0074545966780124135, dt = 8.730405508969355e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 221.23 us (91.9%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (62.5%)
Info: cfl dt = 8.731704372382078e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.953086323237867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0075419007331021075, dt = 8.731704372382078e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 319.53 us (94.3%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (58.6%)
Info: cfl dt = 8.733130053383142e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9237e+05 | 65536 | 2 | 1.670e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8819948432088438 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007629217776825928, dt = 8.733130053383142e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 240.39 us (92.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.9%)
Info: cfl dt = 8.734652987469967e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9328e+05 | 65536 | 2 | 1.666e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8866780191745263 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00771654907735976, dt = 8.734652987469967e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 214.31 us (91.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (53.0%)
Info: cfl dt = 8.736250753387332e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0759e+05 | 65536 | 2 | 1.608e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.955653460515764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00780389560723446, dt = 8.736250753387332e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.90 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 260.42 us (92.5%)
LB move op cnt : 0
LB apply : 4.60 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (60.2%)
Info: cfl dt = 8.736712785005193e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0735e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.954859935790646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007891258114768334, dt = 8.736712785005193e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 236.73 us (92.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (57.7%)
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.0621e+05 | 65536 | 2 | 1.613e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9494675190729365 (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 : 5.60 us (2.2%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 239.74 us (92.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (62.9%)
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.0829e+05 | 65536 | 2 | 1.605e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9594833481587999 (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 : 6.28 us (2.5%)
patch tree reduce : 3.09 us (1.3%)
gen split merge : 1.33 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 223.66 us (90.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.0%)
Info: cfl dt = 8.736740590855764e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.950708899326546 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008153359262650595, dt = 8.736740590855764e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 246.91 us (92.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.7%)
Info: cfl dt = 8.736808500422234e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0698e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9531873252927312 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008240726668559153, dt = 8.736808500422234e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 217.34 us (91.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.9%)
Info: cfl dt = 8.736903588865798e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9675549378355779 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008328094753563374, dt = 8.736903588865798e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 208.58 us (91.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.5%)
Info: cfl dt = 8.736994402042444e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0211e+05 | 65536 | 2 | 1.630e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9298722109083326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008415463789452033, dt = 8.736994402042444e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 220.14 us (91.8%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (57.8%)
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.0168e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9278324051121998 (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.39 us (2.3%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 215.35 us (91.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.0%)
Info: cfl dt = 8.736251837765801e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0068e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.922973864031564 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008590202362506847, dt = 8.736251837765801e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 247.77 us (92.7%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.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.0983e+05 | 65536 | 2 | 1.599e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9667469542557339 (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.30 us (2.2%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 217.78 us (91.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.9%)
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 | 3.7490e+05 | 65536 | 2 | 1.748e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7990170226131283 (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 : 5.53 us (2.1%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 237.28 us (92.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (62.1%)
Info: cfl dt = 8.735023928279212e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9245e+05 | 65536 | 2 | 1.670e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8831767951162297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00885227569437168, dt = 8.735023928279212e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.79 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 : 237.55 us (92.4%)
LB move op cnt : 0
LB apply : 3.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.4%)
Info: cfl dt = 8.734804225830182e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8845e+05 | 65536 | 2 | 1.687e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.86390936758149 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008939625933654471, dt = 8.734804225830182e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.74 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 260.68 us (93.1%)
LB move op cnt : 0
LB apply : 3.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (61.4%)
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 | 4.0381e+05 | 65536 | 2 | 1.623e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9375355024392846 (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 : 7.77 us (2.9%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 240.99 us (91.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (59.8%)
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 | 4.0143e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9261162112362156 (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.57 us (2.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 213.89 us (91.7%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (59.6%)
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.9775e+05 | 65536 | 2 | 1.648e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9084178049606273 (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 : 5.10 us (1.9%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 243.05 us (92.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (60.2%)
Info: cfl dt = 8.734420248199667e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8746e+05 | 65536 | 2 | 1.691e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8590309513921783 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009289010227909412, dt = 8.734420248199667e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 205.85 us (91.1%)
LB move op cnt : 0
LB apply : 3.65 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (54.5%)
Info: cfl dt = 8.734430619049608e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0494e+05 | 65536 | 2 | 1.618e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9428713719890014 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009376354430391408, dt = 8.734430619049608e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 241.39 us (92.5%)
LB move op cnt : 0
LB apply : 3.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (58.8%)
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 | 3.9326e+05 | 65536 | 2 | 1.666e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8868714386222496 (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.31 us (2.3%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 209.20 us (91.5%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (56.2%)
Info: cfl dt = 8.734576424447765e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9632e+05 | 65536 | 2 | 1.654e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9015489469919455 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009551043566302833, dt = 8.734576424447765e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 211.00 us (91.0%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.2%)
Info: cfl dt = 8.734709939205364e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.891192774112757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00963838933054731, dt = 8.734709939205364e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 206.75 us (91.2%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.1%)
Info: cfl dt = 8.734882405392117e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0616e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.948785822989233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009725736429939364, dt = 8.734882405392117e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 202.95 us (91.0%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.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 | 5.3432e+05 | 65536 | 2 | 1.227e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5637815413977183 (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.36 us (2.4%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 202.51 us (91.4%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.3%)
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 | 5.4403e+05 | 65536 | 2 | 1.205e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.610430531914877 (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.41 us (2.1%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 232.84 us (92.3%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (60.4%)
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 | 5.5340e+05 | 65536 | 2 | 1.184e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6554519909706085 (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 : 5.39 us (2.6%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 189.45 us (90.9%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (56.2%)
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 | 5.6997e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7350476941480806 (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 (2.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 201.46 us (90.9%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (53.9%)
Info: cfl dt = 8.736290173451262e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6562e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7142900853150267 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010162505195463523, dt = 8.736290173451262e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 189.50 us (90.3%)
LB move op cnt : 0
LB apply : 2.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (54.9%)
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 | 5.7455e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7572390967915688 (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.68 us (2.3%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 229.36 us (91.9%)
LB move op cnt : 0
LB apply : 3.48 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.6%)
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 | 5.4020e+05 | 65536 | 2 | 1.213e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.592507505541442 (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.10 us (2.4%)
patch tree reduce : 1.81 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 191.00 us (90.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.6%)
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.5608e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1888081031682955 (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.27 us (2.4%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 196.62 us (91.0%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (61.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 | 4.4370e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1293969639348034 (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.35 us (2.3%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 217.22 us (91.8%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.3%)
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.5206e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.169559106951328 (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.26 us (2.1%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 231.33 us (92.3%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.0%)
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.4884e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1541348773479494 (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 : 5.63 us (2.4%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 217.00 us (91.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (59.9%)
Info: cfl dt = 8.737309726353584e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.144917450249152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010774075814966803, dt = 8.737309726353584e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 207.17 us (91.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.1%)
Info: cfl dt = 8.737518238953229e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1213697730261543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010861448912230339, dt = 8.737518238953229e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 209.40 us (91.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.2%)
Info: cfl dt = 8.737750943245011e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3715e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.098175774896061 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010948824094619872, dt = 8.737750943245011e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 203.11 us (91.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (54.7%)
Info: cfl dt = 8.73800797184337e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2317e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0311221871344065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011036201604052323, dt = 8.73800797184337e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 198.55 us (90.7%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.0%)
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.3282e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0775122886003916 (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.45 us (2.3%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 215.05 us (91.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (59.9%)
Info: cfl dt = 8.738594615956997e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.089317696655395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011210964576434843, dt = 8.738594615956997e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 216.44 us (91.8%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (76.2%)
Info: cfl dt = 8.738923685910869e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0974968444107644 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011298350522594413, dt = 8.738923685910869e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 229.14 us (91.9%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (61.2%)
Info: cfl dt = 8.739276039108815e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.97841970696898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011385739759453522, dt = 8.739276039108815e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 214.19 us (91.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.3%)
Info: cfl dt = 8.739651150113523e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3306e+05 | 65536 | 2 | 1.229e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5590348506879668 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01147313251984461, dt = 8.739651150113523e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 205.23 us (91.3%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (56.0%)
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 | 5.5583e+05 | 65536 | 2 | 1.179e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6684292827674536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011560529031345745, 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.19 us (2.5%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 187.14 us (90.7%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.4%)
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 | 5.7937e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.781578450861085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011647929515488318, 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.49 us (2.3%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 220.33 us (91.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (58.5%)
Info: cfl dt = 8.740906621442521e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1298e+05 | 65536 | 2 | 1.278e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4629764120892492 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011735334187032622, dt = 8.740906621442521e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 253.41 us (92.8%)
LB move op cnt : 0
LB apply : 3.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (63.3%)
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 | 5.3241e+05 | 65536 | 2 | 1.231e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.556396295507045 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011822743253247047, 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 : 5.71 us (2.3%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 228.47 us (92.1%)
LB move op cnt : 0
LB apply : 3.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.9%)
Info: cfl dt = 8.741740739338654e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4869e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1544946484756347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01191015706070729, dt = 8.741740739338654e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 210.33 us (91.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.3%)
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.3326e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.080486708758945 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011997574468100675, dt = 2.4255318993252756e-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 : 5.44 us (2.2%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 227.29 us (91.9%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (60.4%)
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.3914e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.058510196707819116 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 231.430840307 (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.84 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.32 us (56.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 : 771.00 ns (0.3%)
patch tree reduce : 1.40 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 275.13 us (96.5%)
LB move op cnt : 0
LB apply : 2.49 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 : 231.56762528700003 (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.7%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 259.22 us (91.6%)
LB move op cnt : 0
LB apply : 2.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (52.7%)
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 | 5.1466e+05 | 65536 | 2 | 1.273e-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.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.32 us (2.0%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 246.04 us (92.7%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.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 | 5.7415e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.951164821269256 (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.29 us (2.2%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 226.49 us (92.3%)
LB move op cnt : 0
LB apply : 3.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (54.4%)
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.2215e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.664914062838571 (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.04 us (2.2%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 205.84 us (91.6%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (51.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 | 3.9938e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3119851165883685 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 232.18688821900002 (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 : 8.26 us (2.6%)
patch tree reduce : 2.33 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 297.34 us (92.7%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (61.8%)
Info: cfl dt = 0.00010221985046710812 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8473e+05 | 65536 | 2 | 1.352e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8209018194437414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00040594199324641106, dt = 0.00010221985046710812
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 209.13 us (91.3%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (59.0%)
Info: cfl dt = 9.940743635085055e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2511895835921396 (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.38 us (2.2%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 227.86 us (92.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.3%)
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.8469e+05 | 65536 | 2 | 1.704e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9406723285889986 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 232.726189419 (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.11 us (2.3%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 293.31 us (93.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (59.3%)
Info: cfl dt = 9.553994764088304e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4340e+05 | 65536 | 2 | 1.206e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.905821351134108 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006973470695172534, dt = 9.553994764088304e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 205.63 us (91.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (56.5%)
Info: cfl dt = 9.396019805026511e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8158e+05 | 65536 | 2 | 1.361e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5274074994991675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007928870171581364, dt = 9.396019805026511e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 210.91 us (91.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.3%)
Info: cfl dt = 9.254291640036873e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7166e+05 | 65536 | 2 | 1.389e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4344264741863966 (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.31 us (2.7%)
patch tree reduce : 1.93 us (1.0%)
gen split merge : 961.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.7%)
LB compute : 180.08 us (90.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (54.2%)
Info: cfl dt = 9.234562915172374e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8117e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.4198977068520959 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 233.30302169900003 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0009000000000000001, dt = 9.234562915172374e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.8%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 237.55 us (91.4%)
LB move op cnt : 0
LB apply : 3.94 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (60.9%)
Info: cfl dt = 9.116049315871745e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1109e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.085358812018402 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009923456291517237, dt = 9.116049315871745e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 232.94 us (92.2%)
LB move op cnt : 0
LB apply : 3.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.8%)
Info: cfl dt = 9.032242978932549e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9729e+05 | 65536 | 2 | 1.650e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9894685567836223 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010835061223104412, dt = 9.032242978932549e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 226.49 us (92.2%)
LB move op cnt : 0
LB apply : 3.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.9%)
Info: cfl dt = 8.967266565412174e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9252627646153888 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0011738285520997668, dt = 2.617144790023336e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 218.76 us (91.9%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (58.1%)
Info: cfl dt = 8.951487450746458e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7938e+05 | 65536 | 2 | 1.727e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5454167463006593 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 234.02793227700002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0012000000000000001, dt = 8.951487450746458e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.3%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 310.26 us (93.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (60.3%)
Info: cfl dt = 8.901914242865766e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3234e+05 | 65536 | 2 | 1.231e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.617643594563618 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0012895148745074648, dt = 8.901914242865766e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 221.44 us (92.1%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (41.7%)
Info: cfl dt = 8.860614672095156e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8976e+05 | 65536 | 2 | 1.338e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3949222718390875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013785340169361225, dt = 8.860614672095156e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 224.61 us (92.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (51.4%)
Info: cfl dt = 8.783513275469645e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7049e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7767110187574517 (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 : 5.63 us (2.6%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 194.49 us (90.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (57.8%)
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 | 5.7067e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0300815763479985 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 234.58290055700002 (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.20 us (2.5%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 261.60 us (92.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (60.1%)
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 | 5.1929e+05 | 65536 | 2 | 1.262e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.497762898565708 (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.35 us (2.2%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 218.73 us (92.0%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (53.2%)
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 | 5.7754e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.761587545088732 (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.29 us (2.5%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 193.22 us (90.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (59.5%)
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 | 5.8125e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.77050505582215 (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.87 us (2.7%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 196.75 us (90.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (58.0%)
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 | 5.8133e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2332431318433683 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 235.105193121 (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 : 6.72 us (2.5%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 248.10 us (92.3%)
LB move op cnt : 0
LB apply : 3.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (52.3%)
Info: cfl dt = 8.65220190007591e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7693e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.744027071443204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001886585340439824, dt = 8.65220190007591e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 196.29 us (90.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (59.4%)
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 | 5.7239e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7204746312064536 (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.61 us (2.3%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 227.63 us (92.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (53.6%)
Info: cfl dt = 8.647392502852097e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7463e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.730055715858245 (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 : 5.47 us (2.5%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 201.21 us (91.2%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.4%)
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.2641e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.946396273469165 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 235.65875772200002 (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 : 6.83 us (2.2%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 293.82 us (93.1%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (63.9%)
Info: cfl dt = 8.646568827585424e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6961e+05 | 65536 | 2 | 1.396e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.230435165139434 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0021864637745463594, dt = 8.646568827585424e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 220.18 us (91.9%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (56.6%)
Info: cfl dt = 8.647084739651211e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7622e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7368589524073346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0022729294628222136, dt = 8.647084739651211e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 193.61 us (91.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.1%)
Info: cfl dt = 8.647625093329623e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8088e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.759157654042694 (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.23 us (2.0%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 248.06 us (92.8%)
LB move op cnt : 0
LB apply : 3.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.8%)
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 | 5.8051e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2946527581424323 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 236.206978133 (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.99 us (2.6%)
patch tree reduce : 2.58 us (0.8%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 283.81 us (92.3%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (63.7%)
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 | 5.4577e+05 | 65536 | 2 | 1.201e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5925663784987996 (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.43 us (2.5%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 198.25 us (91.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (45.7%)
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 | 5.7665e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.739417566620659 (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.72 us (2.7%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 195.03 us (90.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (59.6%)
Info: cfl dt = 8.649194018710042e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8022e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7565161463268906 (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.34 us (2.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 200.47 us (91.0%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.0%)
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 | 5.7750e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2865895003589163 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 236.753486591 (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.97 us (2.9%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 255.91 us (91.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.3%)
Info: cfl dt = 8.648968252807368e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1858e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9888612159498302 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0027864974543079686, dt = 8.648968252807368e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 239.54 us (92.8%)
LB move op cnt : 0
LB apply : 2.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.5%)
Info: cfl dt = 8.649624563934172e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0038499431168573 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002872987136836042, dt = 8.649624563934172e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 224.21 us (92.1%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.4%)
Info: cfl dt = 8.651969300185912e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1089e+05 | 65536 | 2 | 1.283e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4274352399102375 (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.09 us (2.0%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 232.15 us (91.7%)
LB move op cnt : 0
LB apply : 2.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (59.6%)
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 | 5.6124e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2491266173226327 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 237.36995032800002 (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.87 us (3.2%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 226.54 us (90.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.6%)
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.2373e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0140372236849857 (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 : 6.01 us (2.7%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 206.73 us (91.3%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.3%)
Info: cfl dt = 8.656714234421241e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2545e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0226197206593732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0031730729518673114, dt = 8.656714234421241e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 208.78 us (91.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (54.2%)
Info: cfl dt = 8.659655068753715e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3822e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.083875852709468 (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 : 5.35 us (2.5%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 194.03 us (91.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (54.5%)
Info: cfl dt = 8.661194581361245e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2236e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9363971783023762 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 238.04395082300002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0033000000000000004, dt = 8.661194581361245e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.7%)
patch tree reduce : 2.13 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 254.46 us (92.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (60.6%)
Info: cfl dt = 8.664739901468512e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3598e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0742756141481715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003386611945813613, dt = 8.664739901468512e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 222.34 us (91.9%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (53.3%)
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 | 4.3117e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0522543461255287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003473259344828298, 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.37 us (2.1%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 237.39 us (92.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (59.4%)
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 | 5.3928e+05 | 65536 | 2 | 1.215e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5683476111106716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00355995939187547, dt = 4.00406081245302e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 226.94 us (91.9%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (55.5%)
Info: cfl dt = 8.679372556665295e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7636e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2676973268416314 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 238.650542384 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0036000000000000003, dt = 8.679372556665295e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.4%)
patch tree reduce : 2.43 us (0.8%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 294.84 us (92.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (55.9%)
Info: cfl dt = 8.686096404390893e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7983e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7644758953634874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0036867937255666535, dt = 8.686096404390893e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 225.70 us (92.0%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (51.5%)
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 | 5.6870e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.713508938224822 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003773654689610562, 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.14 us (2.1%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 223.22 us (92.0%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (61.2%)
Info: cfl dt = 8.699544624467148e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1574346460868936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0038605835817450184, dt = 3.941641825498188e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.84 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 264.88 us (93.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (62.6%)
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 | 5.8982e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2770891252631786 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 239.20566692800003 (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 : 7.00 us (2.5%)
patch tree reduce : 2.29 us (0.8%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 260.50 us (92.1%)
LB move op cnt : 0
LB apply : 3.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (60.6%)
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 | 5.8067e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7758589809362952 (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.47 us (2.2%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 233.04 us (92.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (50.0%)
Info: cfl dt = 8.714632900268237e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8676e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.806947383395817 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00407411183508417, dt = 8.714632900268237e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.82 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 268.50 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.36 us (59.4%)
Info: cfl dt = 8.71723386825808e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2746e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.046307290055082 (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 : 5.35 us (2.1%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 234.51 us (92.4%)
LB move op cnt : 0
LB apply : 3.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (51.1%)
Info: cfl dt = 8.71808605456765e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3140e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9180755730241195 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 239.79412712500002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.004200000000000001, dt = 8.71808605456765e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.87 us (2.4%)
patch tree reduce : 2.26 us (0.7%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 305.37 us (93.0%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (68.5%)
Info: cfl dt = 8.719908754607109e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6391e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7005405765874917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004287180860545677, dt = 8.719908754607109e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 214.33 us (91.7%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (55.4%)
Info: cfl dt = 8.721600979997863e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7240e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7418027033595993 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004374379948091748, dt = 8.721600979997863e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 221.97 us (92.1%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.2%)
Info: cfl dt = 8.723204126841611e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5787e+05 | 65536 | 2 | 1.175e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.672702643170476 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0044615959578917265, dt = 3.840404210827403e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.84 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 191.20 us (90.7%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (57.1%)
Info: cfl dt = 8.723886216303519e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1399e+05 | 65536 | 2 | 1.275e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.084318595567667 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 240.34282655500002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0045000000000000005, dt = 8.723886216303519e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.0%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 221.46 us (90.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.1%)
Info: cfl dt = 8.725434464589249e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1214e+05 | 65536 | 2 | 1.280e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4542683439573247 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004587238862163036, dt = 8.725434464589249e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.84 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 196.18 us (90.7%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (62.8%)
Info: cfl dt = 8.727052331685801e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5411e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6558763981092635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0046744932068089285, dt = 8.727052331685801e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 228.22 us (92.3%)
LB move op cnt : 0
LB apply : 3.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.8%)
Info: cfl dt = 8.728736138154762e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7824e+05 | 65536 | 2 | 1.370e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2926627797865904 (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.36 us (2.2%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 219.93 us (92.2%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.8%)
Info: cfl dt = 8.729484564289753e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8944e+05 | 65536 | 2 | 1.339e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0280067498439016 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 240.91805396100003 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0048000000000000004, dt = 8.729484564289753e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.0%)
patch tree reduce : 2.19 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 235.88 us (91.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.2%)
Info: cfl dt = 8.731230521893493e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4009e+05 | 65536 | 2 | 1.213e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5898560529615717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004887294845642898, dt = 8.731230521893493e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.30 us (0.9%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 248.19 us (92.7%)
LB move op cnt : 0
LB apply : 3.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (58.4%)
Info: cfl dt = 8.732994411527096e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.185636679127952 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004974607150861833, dt = 8.732994411527096e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 221.58 us (92.1%)
LB move op cnt : 0
LB apply : 2.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (52.7%)
Info: cfl dt = 8.732309800341435e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4405e+05 | 65536 | 2 | 1.205e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6099208136808283 (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.41 us (2.1%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 240.31 us (92.3%)
LB move op cnt : 0
LB apply : 3.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (60.5%)
Info: cfl dt = 8.732022280422368e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9249543346917051 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 241.512667864 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0051, dt = 8.732022280422368e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.43 us (2.3%)
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.13 us (0.3%)
LB compute : 306.93 us (93.4%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (58.5%)
Info: cfl dt = 8.731319111716576e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5732e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6732705407243365 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005187320222804224, dt = 8.731319111716576e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 219.13 us (91.8%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (61.9%)
Info: cfl dt = 8.730684279559797e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5600e+05 | 65536 | 2 | 1.179e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.666716348446521 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00527463341392139, dt = 8.730684279559797e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 195.87 us (90.8%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.0%)
Info: cfl dt = 8.730154286493672e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5229e+05 | 65536 | 2 | 1.187e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.648712559817233 (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.42 us (2.2%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 224.54 us (92.1%)
LB move op cnt : 0
LB apply : 2.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (55.0%)
Info: cfl dt = 8.729985970249298e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6266e+05 | 65536 | 2 | 1.416e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9672817837354163 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 242.06565157100002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0054, dt = 8.729985970249298e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 279.30 us (92.7%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (66.8%)
Info: cfl dt = 8.729612276464047e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0366e+05 | 65536 | 2 | 1.624e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9357739793923552 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005487299859702493, dt = 8.729612276464047e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 203.88 us (91.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.6%)
Info: cfl dt = 8.729359715576607e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0678e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9506288602802924 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005574595982467134, dt = 8.729359715576607e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 204.27 us (91.7%)
LB move op cnt : 0
LB apply : 2.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (59.2%)
Info: cfl dt = 8.729236983959581e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0936e+05 | 65536 | 2 | 1.601e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.962976157345977 (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.22 us (2.3%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 205.55 us (91.2%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (54.3%)
Info: cfl dt = 8.729253550429842e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0713e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8523147063446563 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 242.76979426300002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0057, dt = 8.729253550429842e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.3%)
patch tree reduce : 2.26 us (0.7%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 289.44 us (92.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (63.2%)
Info: cfl dt = 8.729322330412914e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4715e+05 | 65536 | 2 | 1.198e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6236493407331527 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005787292535504298, dt = 8.729322330412914e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.59 us (7.4%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 193.40 us (86.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.4%)
Info: cfl dt = 8.729537723591167e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7167e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 1.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.74124806755153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005874585758808427, dt = 8.729537723591167e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 208.04 us (91.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (56.1%)
Info: cfl dt = 8.729904279413474e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7035e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.735005252416608 (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.27 us (2.3%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 211.28 us (91.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (60.3%)
Info: cfl dt = 8.730126508294307e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7075e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.195119447666639 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 243.30350789800002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.006, dt = 8.730126508294307e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.6%)
patch tree reduce : 2.43 us (0.8%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 271.76 us (92.3%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (62.5%)
Info: cfl dt = 8.730701095356105e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7782e+05 | 65536 | 2 | 1.372e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2914194329747586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006087301265082943, dt = 8.730701095356105e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 224.52 us (92.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.5%)
Info: cfl dt = 8.731453253979237e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7022e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7347197400371575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006174608276036504, dt = 8.731453253979237e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 229.73 us (92.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.4%)
Info: cfl dt = 8.732400693377039e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6641e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7166993363919194 (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.37 us (2.2%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 219.33 us (91.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (56.7%)
Info: cfl dt = 8.73287025622218e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6602e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.183901690541739 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 243.84990858400002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.006300000000000001, dt = 8.73287025622218e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.7%)
patch tree reduce : 2.43 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 254.18 us (92.1%)
LB move op cnt : 0
LB apply : 3.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.0%)
Info: cfl dt = 8.734041361858093e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6526e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.711620507079209 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006387328702562223, dt = 8.734041361858093e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 962.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 190.40 us (90.6%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (55.3%)
Info: cfl dt = 8.735336161977938e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7205e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7445385406971186 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006474669116180804, dt = 8.735336161977938e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 198.11 us (91.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (61.0%)
Info: cfl dt = 8.736724728947527e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6718e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7215961048488673 (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.21 us (2.1%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 233.38 us (92.5%)
LB move op cnt : 0
LB apply : 3.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (59.8%)
Info: cfl dt = 8.737335543853111e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6227e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1729918416796103 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 244.37319501300001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.006600000000000001, dt = 8.737335543853111e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.7%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 231.29 us (91.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.4%)
Info: cfl dt = 8.738808823069236e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6982e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7348636950510894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006687373355438532, dt = 8.738808823069236e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 196.13 us (91.1%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.5%)
Info: cfl dt = 8.740354583684662e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6688e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.721250600927378 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006774761443669224, dt = 8.740354583684662e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 196.19 us (90.9%)
LB move op cnt : 0
LB apply : 2.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (54.2%)
Info: cfl dt = 8.742049944163718e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6772e+05 | 65536 | 2 | 1.154e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7257454405401575 (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.44 us (2.5%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 992.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 194.36 us (91.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.6%)
Info: cfl dt = 8.742776543565061e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6152e+05 | 65536 | 2 | 1.167e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.167030240261477 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 244.893560333 (s) [Godunov][rank=0]
amr::Godunov: t = 0.006900000000000001, dt = 8.742776543565061e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.86 us (3.2%)
patch tree reduce : 2.48 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 221.68 us (90.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (57.7%)
Info: cfl dt = 8.744473628748888e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9698e+05 | 65536 | 2 | 1.651e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9065101975766832 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0069874277654356515, dt = 8.744473628748888e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 210.83 us (91.3%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (55.7%)
Info: cfl dt = 8.746178803657979e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0751940537936093 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007074872501723141, dt = 8.746178803657979e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 222.16 us (92.1%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (57.5%)
Info: cfl dt = 8.746563558385104e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6859e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7317391249382896 (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 : 5.22 us (2.7%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 177.61 us (90.2%)
LB move op cnt : 0
LB apply : 3.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (61.5%)
Info: cfl dt = 8.746560851334683e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0794e+05 | 65536 | 2 | 1.607e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8440387692101351 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 245.54779684500002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.007200000000000001, dt = 8.746560851334683e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.8%)
patch tree reduce : 2.39 us (0.8%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 260.27 us (91.6%)
LB move op cnt : 0
LB apply : 3.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (59.6%)
Info: cfl dt = 8.746514606534933e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4654e+05 | 65536 | 2 | 1.199e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.625916838873331 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007287465608513347, dt = 8.746514606534933e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 193.49 us (90.9%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.5%)
Info: cfl dt = 8.746475848359023e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5640e+05 | 65536 | 2 | 1.178e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6732971199923545 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007374930754578696, dt = 8.746475848359023e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 186.90 us (90.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.0%)
Info: cfl dt = 8.746465760913558e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.171404114410425 (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.85 us (2.5%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 217.45 us (91.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.1%)
Info: cfl dt = 8.746479259411263e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6177e+05 | 65536 | 2 | 1.167e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1604390854582767 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 246.114945518 (s) [Godunov][rank=0]
amr::Godunov: t = 0.007500000000000001, dt = 8.746479259411263e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.90 us (3.2%)
patch tree reduce : 2.27 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 223.80 us (90.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (61.2%)
Info: cfl dt = 8.746518173167393e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5418e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.662621168232695 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007587464792594113, dt = 8.746518173167393e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 892.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 195.61 us (91.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.8%)
Info: cfl dt = 8.746585126564725e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4994e+05 | 65536 | 2 | 1.192e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6422547837935975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007674929974325787, dt = 8.746585126564725e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 1.79 us (0.9%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 190.34 us (90.7%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.1%)
Info: cfl dt = 8.746614402024215e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5413e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.662397055801169 (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.46 us (2.6%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 194.48 us (91.0%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (55.7%)
Info: cfl dt = 8.74662043501919e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6153e+05 | 65536 | 2 | 1.167e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1599357252292979 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 246.64506851800002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0078000000000000005, dt = 8.74662043501919e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.3%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 219.73 us (90.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.6%)
Info: cfl dt = 8.746334123766856e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4900e+05 | 65536 | 2 | 1.194e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6377771106660726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007887466204350192, dt = 8.746334123766856e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.33 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 217.02 us (91.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (60.5%)
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 | 5.4234e+05 | 65536 | 2 | 1.208e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.605661626296783 (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.23 us (2.2%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 216.37 us (91.7%)
LB move op cnt : 0
LB apply : 3.45 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.4%)
Info: cfl dt = 8.745774911508149e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6196e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 1.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.699811873249375 (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.83 us (2.5%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 216.86 us (91.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (60.2%)
Info: cfl dt = 8.74574668617859e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1296e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8531912958790089 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 247.223094257 (s) [Godunov][rank=0]
amr::Godunov: t = 0.008100000000000001, dt = 8.74574668617859e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.9%)
patch tree reduce : 2.23 us (0.8%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 247.90 us (91.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.9%)
Info: cfl dt = 8.745751693275463e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1804030420765876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008187457466861787, dt = 8.745751693275463e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 205.87 us (91.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.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.8301e+05 | 65536 | 2 | 1.357e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3204864468796016 (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.10 us (2.1%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 221.21 us (91.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (60.4%)
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 | 5.6800e+05 | 65536 | 2 | 1.154e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7288140846049536 (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.56 us (2.5%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 205.63 us (91.2%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (60.6%)
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 | 5.6685e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1716056033592983 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 247.80664803200003 (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.83 us (3.2%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 225.36 us (90.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.8%)
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 | 4.8787e+05 | 65536 | 2 | 1.343e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3439560574352636 (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 : 5.74 us (2.5%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 212.63 us (91.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (59.4%)
Info: cfl dt = 8.746785784543685e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6756e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7268860104397086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008574926782515613, dt = 8.746785784543685e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.80 us (0.9%)
gen split merge : 952.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 190.73 us (91.0%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (54.1%)
Info: cfl dt = 8.747133810360286e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7292e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7527509278087843 (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 : 5.71 us (2.3%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 231.11 us (92.1%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.6%)
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.3903e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.906922720283832 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 248.38724988200002 (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 : 7.56 us (2.5%)
patch tree reduce : 2.36 us (0.8%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 279.09 us (92.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.5%)
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 | 5.6895e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7338133829736453 (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.05 us (2.3%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 202.71 us (91.2%)
LB move op cnt : 0
LB apply : 3.52 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (62.5%)
Info: cfl dt = 8.748117666138428e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3480e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.089344700462548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008874949791696434, dt = 8.748117666138428e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 3.12 us (1.4%)
gen split merge : 1.45 us (0.7%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 196.09 us (90.1%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.4%)
Info: cfl dt = 8.748576050165187e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7516e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.763910443451669 (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 : 5.49 us (2.7%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.6%)
LB compute : 180.64 us (90.4%)
LB move op cnt : 0
LB apply : 2.95 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (59.6%)
Info: cfl dt = 8.74877398139572e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7681e+05 | 65536 | 2 | 1.374e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9840076870569091 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 248.965963525 (s) [Godunov][rank=0]
amr::Godunov: t = 0.009000000000000001, dt = 8.74877398139572e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.9%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 219.72 us (90.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (58.4%)
Info: cfl dt = 8.74926807399503e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7278e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7527121757971185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009087487739813958, dt = 8.74926807399503e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 191.76 us (90.9%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.3%)
Info: cfl dt = 8.749782694168408e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.0539e+05 | 65536 | 2 | 1.297e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4289457220233053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009174980420553909, dt = 8.749782694168408e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.31 us (0.6%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 193.51 us (90.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (54.7%)
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.7103e+05 | 65536 | 2 | 1.391e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.263977141097705 (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.77 us (2.8%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 186.24 us (90.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.3%)
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 | 5.1007e+05 | 65536 | 2 | 1.285e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0513287899545989 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 249.53578461200001 (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 : 6.93 us (2.5%)
patch tree reduce : 2.33 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 259.91 us (92.2%)
LB move op cnt : 0
LB apply : 3.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (60.9%)
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 | 5.8168e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7960275608661767 (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.63 us (2.5%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 206.05 us (91.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (53.5%)
Info: cfl dt = 8.751642874206315e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1404e+05 | 65536 | 2 | 1.275e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4710403190444605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009475016207491575, dt = 8.751642874206315e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 190.91 us (90.7%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.0%)
Info: cfl dt = 8.752239575146196e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2182e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0278747445537846 (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.47 us (2.4%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 208.16 us (91.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (59.1%)
Info: cfl dt = 8.752496988872685e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3905e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.903623430777558 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 250.13977387000003 (s) [Godunov][rank=0]
amr::Godunov: t = 0.009600000000000001, dt = 8.752496988872685e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.02 us (3.1%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 232.84 us (91.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.9%)
Info: cfl dt = 8.753130979975448e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8565e+05 | 65536 | 2 | 1.349e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.334950732696118 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009687524969888728, dt = 8.753130979975448e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 187.86 us (90.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (66.5%)
Info: cfl dt = 8.753779367069833e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2762e+05 | 65536 | 2 | 1.242e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5369213250412934 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009775056279688481, dt = 8.753779367069833e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 195.57 us (91.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.3%)
Info: cfl dt = 8.754452101345276e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2350e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.036438193725053 (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.33 us (2.6%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 186.72 us (90.7%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (65.0%)
Info: cfl dt = 8.754752373943098e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7247e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1762909366385585 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 250.734327301 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0099, dt = 8.754752373943098e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.9%)
patch tree reduce : 2.38 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 236.20 us (91.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (61.7%)
Info: cfl dt = 8.75520745972029e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0777e+05 | 65536 | 2 | 1.607e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9610133902771585 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009987547523739431, dt = 8.75520745972029e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 217.09 us (91.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (61.3%)
Info: cfl dt = 8.754991032784407e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1450e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9934924213438439 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010075099598336634, dt = 8.754991032784407e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 189.87 us (90.7%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (57.3%)
Info: cfl dt = 8.754796643794686e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6977e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.74018529124652 (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.61 us (2.5%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 204.88 us (91.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (54.1%)
Info: cfl dt = 8.754734136690716e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6889e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1672043841644466 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 251.360189601 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0102, dt = 8.754734136690716e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.1%)
patch tree reduce : 2.31 us (0.9%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 223.47 us (90.8%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (60.2%)
Info: cfl dt = 8.754591438504015e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8425e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.809712791533856 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010287547341366908, dt = 8.754591438504015e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 204.82 us (91.3%)
LB move op cnt : 0
LB apply : 3.65 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.7%)
Info: cfl dt = 8.754487757647473e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6200e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7026933846536703 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010375093255751948, dt = 8.754487757647473e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 223.07 us (92.0%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.6%)
Info: cfl dt = 8.754407150876581e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1892249036403633 (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.08 us (2.5%)
patch tree reduce : 1.76 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 184.97 us (90.9%)
LB move op cnt : 0
LB apply : 3.00 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (59.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 | 5.6767e+05 | 65536 | 2 | 1.154e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1650582015158462 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 251.92384621200003 (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 : 7.68 us (3.2%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 215.79 us (90.5%)
LB move op cnt : 0
LB apply : 2.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (52.8%)
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 | 5.6942e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7382915073205285 (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.34 us (2.4%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 199.15 us (91.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (58.9%)
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 | 5.7139e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.747780523781068 (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.53 us (2.6%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 191.87 us (90.9%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (57.2%)
Info: cfl dt = 8.754385474030124e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6679e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.725636110027073 (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 : 5.46 us (2.6%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 193.35 us (91.0%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (59.9%)
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 | 5.6522e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1602639843395393 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 252.461272559 (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 : 8.17 us (3.3%)
patch tree reduce : 2.41 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 226.12 us (90.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.1%)
Info: cfl dt = 8.754523352746774e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7976e+05 | 65536 | 2 | 1.366e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3071522060476566 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01088754419639019, dt = 8.754523352746774e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 206.74 us (91.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.6%)
Info: cfl dt = 8.754672013981816e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6117e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6986735868194995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010975089429917657, dt = 8.754672013981816e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 204.92 us (91.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.5%)
Info: cfl dt = 8.754869973460883e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6511e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.717642651519603 (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.10 us (2.4%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 195.31 us (91.2%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (56.5%)
Info: cfl dt = 8.754979028402772e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1085e+05 | 65536 | 2 | 1.283e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.048490125432622 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 253.01804692500002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0111, dt = 8.754979028402772e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 215.64 us (90.8%)
LB move op cnt : 0
LB apply : 3.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (58.2%)
Info: cfl dt = 8.755209759668227e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7180e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7499272165558803 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011187549790284029, dt = 8.755209759668227e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.8%)
patch tree reduce : 2.19 us (1.1%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 184.70 us (90.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (48.0%)
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 | 5.7642e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.772224667885064 (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.47 us (2.4%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 204.51 us (91.4%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (56.4%)
Info: cfl dt = 8.75565753760288e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9055e+05 | 65536 | 2 | 1.336e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3592977385299436 (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.38 us (2.6%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 189.50 us (90.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.0%)
Info: cfl dt = 8.755753708818938e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9965e+05 | 65536 | 2 | 1.312e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0249595085052252 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 253.568103242 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0114, dt = 8.755753708818938e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.59 us (2.7%)
patch tree reduce : 2.57 us (0.9%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 257.81 us (91.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (63.4%)
Info: cfl dt = 8.7559939675867e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5777e+05 | 65536 | 2 | 1.175e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6826718708201 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01148755753708819, dt = 8.7559939675867e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 223.50 us (91.7%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.3%)
Info: cfl dt = 8.756235779612815e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6869e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.735289837418167 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011575117476764058, dt = 8.756235779612815e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.80 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 191.41 us (90.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.3%)
Info: cfl dt = 8.756479180806838e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4954e+05 | 65536 | 2 | 1.193e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6432333394676513 (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.39 us (2.6%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 190.78 us (90.5%)
LB move op cnt : 0
LB apply : 4.00 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.8%)
Info: cfl dt = 8.756578148808488e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1317e+05 | 65536 | 2 | 1.277e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0520351889875434 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 254.108885616 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0117, dt = 8.756578148808488e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.7%)
patch tree reduce : 2.23 us (0.9%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 236.34 us (91.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (58.3%)
Info: cfl dt = 8.756824449841142e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7995e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7896374853787282 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011787565781488086, dt = 8.756824449841142e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 202.40 us (91.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (58.4%)
Info: cfl dt = 8.757072055445953e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5036e+05 | 65536 | 2 | 1.191e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6473904345914168 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011875134025986497, dt = 8.757072055445953e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 200.87 us (90.9%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (55.6%)
Info: cfl dt = 8.7573208159709e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9596e+05 | 65536 | 2 | 1.321e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.385753160218349 (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.55 us (2.7%)
patch tree reduce : 1.99 us (1.0%)
gen split merge : 951.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 189.30 us (90.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.0%)
Info: cfl dt = 8.757422036845763e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5984e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9420703071518743 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 254.673696822 (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.08485621e-10, 1.08485621e-10, 1.08485621e-10, 1.08485621e-10,
7.72018377e-09, 7.72018377e-09, 7.72018377e-09, 7.72018377e-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.20336058e-12, 1.20336058e-12, 1.20336058e-12, 1.20336058e-12,
6.76381408e-11, 6.76381408e-11, 6.76381408e-11, 6.76381408e-11,
2.53837784e-09, 2.53837784e-09, 2.53837784e-09, 2.53837784e-09,
6.79851738e-08, 6.79851738e-08, 6.79851738e-08, 6.79851738e-08,
1.35400956e-06, 1.35400956e-06, 1.35400956e-06, 1.35400956e-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.29219655e-14, 1.29219655e-14, 1.29219655e-14, 1.29219655e-14,
6.25778002e-13, 6.25778002e-13, 6.25778002e-13, 6.25778002e-13,
2.24660625e-11, 2.24660625e-11, 2.24660625e-11, 2.24660625e-11,
6.13852625e-10, 6.13852625e-10, 6.13852625e-10, 6.13852625e-10,
1.31518529e-08, 1.31518529e-08, 1.31518529e-08, 1.31518529e-08,
2.25105228e-07, 2.25105228e-07, 2.25105228e-07, 2.25105228e-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.37429020e-15, 5.37429020e-15, 5.37429020e-15, 5.37429020e-15,
2.06171400e-13, 2.06171400e-13, 2.06171400e-13, 2.06171400e-13,
5.66869776e-12, 5.66869776e-12, 5.66869776e-12, 5.66869776e-12,
1.27514472e-10, 1.27514472e-10, 1.27514472e-10, 1.27514472e-10,
2.36717416e-09, 2.36717416e-09, 2.36717416e-09, 2.36717416e-09,
3.66285370e-08, 3.66285370e-08, 3.66285370e-08, 3.66285370e-08,
4.75793330e-07, 4.75793330e-07, 4.75793330e-07, 4.75793330e-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.81076471e-15, 1.81076471e-15, 1.81076471e-15, 1.81076471e-15,
5.33711504e-14, 5.33711504e-14, 5.33711504e-14, 5.33711504e-14,
1.23428190e-12, 1.23428190e-12, 1.23428190e-12, 1.23428190e-12,
2.43134311e-11, 2.43134311e-11, 2.43134311e-11, 2.43134311e-11,
4.08349063e-10, 4.08349063e-10, 4.08349063e-10, 4.08349063e-10,
5.88077889e-09, 5.88077889e-09, 5.88077889e-09, 5.88077889e-09,
7.29422446e-08, 7.29422446e-08, 7.29422446e-08, 7.29422446e-08,
7.81392347e-07, 7.81392347e-07, 7.81392347e-07, 7.81392347e-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.08967639e-14, 1.08967639e-14, 1.08967639e-14, 1.08967639e-14,
2.45974524e-13, 2.45974524e-13, 2.45974524e-13, 2.45974524e-13,
4.40462863e-12, 4.40462863e-12, 4.40462863e-12, 4.40462863e-12,
6.86629816e-11, 6.86629816e-11, 6.86629816e-11, 6.86629816e-11,
9.37024407e-10, 9.37024407e-10, 9.37024407e-10, 9.37024407e-10,
1.12236026e-08, 1.12236026e-08, 1.12236026e-08, 1.12236026e-08,
1.18207071e-07, 1.18207071e-07, 1.18207071e-07, 1.18207071e-07,
1.09557226e-06, 1.09557226e-06, 1.09557226e-06, 1.09557226e-06,
8.93418659e-06, 8.93418659e-06, 8.93418659e-06, 8.93418659e-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.80853178e-15, 1.80853178e-15, 1.80853178e-15, 1.80853178e-15,
4.50605708e-14, 4.50605708e-14, 4.50605708e-14, 4.50605708e-14,
7.68277414e-13, 7.68277414e-13, 7.68277414e-13, 7.68277414e-13,
1.13592346e-11, 1.13592346e-11, 1.13592346e-11, 1.13592346e-11,
1.48672828e-10, 1.48672828e-10, 1.48672828e-10, 1.48672828e-10,
1.73273071e-09, 1.73273071e-09, 1.73273071e-09, 1.73273071e-09,
1.80065707e-08, 1.80065707e-08, 1.80065707e-08, 1.80065707e-08,
1.66938237e-07, 1.66938237e-07, 1.66938237e-07, 1.66938237e-07,
1.38047342e-06, 1.38047342e-06, 1.38047342e-06, 1.38047342e-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.26032733e-15, 7.26032733e-15, 7.26032733e-15, 7.26032733e-15,
1.31204892e-13, 1.31204892e-13, 1.31204892e-13, 1.31204892e-13,
1.85915120e-12, 1.85915120e-12, 1.85915120e-12, 1.85915120e-12,
2.35214405e-11, 2.35214405e-11, 2.35214405e-11, 2.35214405e-11,
2.68232224e-10, 2.68232224e-10, 2.68232224e-10, 2.68232224e-10,
2.75761054e-09, 2.75761054e-09, 2.75761054e-09, 2.75761054e-09,
2.55719149e-08, 2.55719149e-08, 2.55719149e-08, 2.55719149e-08,
2.13858425e-07, 2.13858425e-07, 2.13858425e-07, 2.13858425e-07,
1.61179085e-06, 1.61179085e-06, 1.61179085e-06, 1.61179085e-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.25190511e-14, 2.25190511e-14, 2.25190511e-14, 2.25190511e-14,
3.02615567e-13, 3.02615567e-13, 3.02615567e-13, 3.02615567e-13,
3.71367056e-12, 3.71367056e-12, 3.71367056e-12, 3.71367056e-12,
4.16061676e-11, 4.16061676e-11, 4.16061676e-11, 4.16061676e-11,
4.24015854e-10, 4.24015854e-10, 4.24015854e-10, 4.24015854e-10,
3.93302747e-09, 3.93302747e-09, 3.93302747e-09, 3.93302747e-09,
3.32002464e-08, 3.32002464e-08, 3.32002464e-08, 3.32002464e-08,
2.54903714e-07, 2.54903714e-07, 2.54903714e-07, 2.54903714e-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,
2.98573500e-15, 2.98573500e-15, 2.98573500e-15, 2.98573500e-15,
5.04337422e-14, 5.04337422e-14, 5.04337422e-14, 5.04337422e-14,
5.87081027e-13, 5.87081027e-13, 5.87081027e-13, 5.87081027e-13,
6.46142562e-12, 6.46142562e-12, 6.46142562e-12, 6.46142562e-12,
6.53757287e-11, 6.53757287e-11, 6.53757287e-11, 6.53757287e-11,
6.06617304e-10, 6.06617304e-10, 6.06617304e-10, 6.06617304e-10,
5.16153937e-09, 5.16153937e-09, 5.16153937e-09, 5.16153937e-09,
4.02535992e-08, 4.02535992e-08, 4.02535992e-08, 4.02535992e-08,
2.87499821e-07, 2.87499821e-07, 2.87499821e-07, 2.87499821e-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,
6.27065778e-15, 6.27065778e-15, 6.27065778e-15, 6.27065778e-15,
9.36467290e-14, 9.36467290e-14, 9.36467290e-14, 9.36467290e-14,
1.00860484e-12, 1.00860484e-12, 1.00860484e-12, 1.00860484e-12,
1.01023072e-11, 1.01023072e-11, 1.01023072e-11, 1.01023072e-11,
9.37595522e-11, 9.37595522e-11, 9.37595522e-11, 9.37595522e-11,
8.03301393e-10, 8.03301393e-10, 8.03301393e-10, 8.03301393e-10,
6.34932545e-09, 6.34932545e-09, 6.34932545e-09, 6.34932545e-09,
4.62683756e-08, 4.62683756e-08, 4.62683756e-08, 4.62683756e-08,
3.10550363e-07, 3.10550363e-07, 3.10550363e-07, 3.10550363e-07,
1.91739686e-06, 1.91739686e-06, 1.91739686e-06, 1.91739686e-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.55883744e-13, 1.55883744e-13, 1.55883744e-13, 1.55883744e-13,
1.56381101e-12, 1.56381101e-12, 1.56381101e-12, 1.56381101e-12,
1.45269532e-11, 1.45269532e-11, 1.45269532e-11, 1.45269532e-11,
1.25181946e-10, 1.25181946e-10, 1.25181946e-10, 1.25181946e-10,
1.00094052e-09, 1.00094052e-09, 1.00094052e-09, 1.00094052e-09,
7.42144313e-09, 7.42144313e-09, 7.42144313e-09, 7.42144313e-09,
5.09825807e-08, 5.09825807e-08, 5.09825807e-08, 5.09825807e-08,
3.24157732e-07, 3.24157732e-07, 3.24157732e-07, 3.24157732e-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.25604166e-13, 2.25604166e-13, 2.25604166e-13, 2.25604166e-13,
2.25460528e-12, 2.25460528e-12, 2.25460528e-12, 2.25460528e-12,
1.95324109e-11, 1.95324109e-11, 1.95324109e-11, 1.95324109e-11,
1.57767209e-10, 1.57767209e-10, 1.57767209e-10, 1.57767209e-10,
1.18751939e-09, 1.18751939e-09, 1.18751939e-09, 1.18751939e-09,
8.32407208e-09, 8.32407208e-09, 8.32407208e-09, 8.32407208e-09,
5.42910762e-08, 5.42910762e-08, 5.42910762e-08, 5.42910762e-08,
3.29113215e-07, 3.29113215e-07, 3.29113215e-07, 3.29113215e-07,
1.85184066e-06, 1.85184066e-06, 1.85184066e-06, 1.85184066e-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.84156783e-12, 2.84156783e-12, 2.84156783e-12, 2.84156783e-12,
2.48780525e-11, 2.48780525e-11, 2.48780525e-11, 2.48780525e-11,
1.89651482e-10, 1.89651482e-10, 1.89651482e-10, 1.89651482e-10,
1.35316959e-09, 1.35316959e-09, 1.35316959e-09, 1.35316959e-09,
9.02460692e-09, 9.02460692e-09, 9.02460692e-09, 9.02460692e-09,
5.62089385e-08, 5.62089385e-08, 5.62089385e-08, 5.62089385e-08,
3.26589984e-07, 3.26589984e-07, 3.26589984e-07, 3.26589984e-07,
1.76783166e-06, 1.76783166e-06, 1.76783166e-06, 1.76783166e-06,
8.90072518e-06, 8.90072518e-06, 8.90072518e-06, 8.90072518e-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.79934020e-11, 2.79934020e-11, 2.79934020e-11, 2.79934020e-11,
2.19416444e-10, 2.19416444e-10, 2.19416444e-10, 2.19416444e-10,
1.49115343e-09, 1.49115343e-09, 1.49115343e-09, 1.49115343e-09,
9.51187283e-09, 9.51187283e-09, 9.51187283e-09, 9.51187283e-09,
5.68485401e-08, 5.68485401e-08, 5.68485401e-08, 5.68485401e-08,
3.17985035e-07, 3.17985035e-07, 3.17985035e-07, 3.17985035e-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.25423938e-10, 2.25423938e-10, 2.25423938e-10, 2.25423938e-10,
1.59939664e-09, 1.59939664e-09, 1.59939664e-09, 1.59939664e-09,
9.78961146e-09, 9.78961146e-09, 9.78961146e-09, 9.78961146e-09,
5.63718999e-08, 5.63718999e-08, 5.63718999e-08, 5.63718999e-08,
3.04684380e-07, 3.04684380e-07, 3.04684380e-07, 3.04684380e-07,
1.54374636e-06, 1.54374636e-06, 1.54374636e-06, 1.54374636e-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.52639387e-09, 1.52639387e-09, 1.52639387e-09, 1.52639387e-09,
9.88801510e-09, 9.88801510e-09, 9.88801510e-09, 9.88801510e-09,
5.49631662e-08, 5.49631662e-08, 5.49631662e-08, 5.49631662e-08,
2.87970266e-07, 2.87970266e-07, 2.87970266e-07, 2.87970266e-07,
1.41808508e-06, 1.41808508e-06, 1.41808508e-06, 1.41808508e-06,
6.55412035e-06, 6.55412035e-06, 6.55412035e-06, 6.55412035e-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.88471412e-09, 8.88471412e-09, 8.88471412e-09, 8.88471412e-09,
5.29210744e-08, 5.29210744e-08, 5.29210744e-08, 5.29210744e-08,
2.68968981e-07, 2.68968981e-07, 2.68968981e-07, 2.68968981e-07,
1.29058595e-06, 1.29058595e-06, 1.29058595e-06, 1.29058595e-06,
5.82613010e-06, 5.82613010e-06, 5.82613010e-06, 5.82613010e-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.52514067e-08, 4.52514067e-08, 4.52514067e-08, 4.52514067e-08,
2.49281915e-07, 2.49281915e-07, 2.49281915e-07, 2.49281915e-07,
1.16502485e-06, 1.16502485e-06, 1.16502485e-06, 1.16502485e-06,
5.14742917e-06, 5.14742917e-06, 5.14742917e-06, 5.14742917e-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.04607723e-07, 2.04607723e-07, 2.04607723e-07, 2.04607723e-07,
1.04753501e-06, 1.04753501e-06, 1.04753501e-06, 1.04753501e-06,
4.52318124e-06, 4.52318124e-06, 4.52318124e-06, 4.52318124e-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.31212440e-07, 8.31212440e-07, 8.31212440e-07, 8.31212440e-07,
3.97120542e-06, 3.97120542e-06, 3.97120542e-06, 3.97120542e-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.06442749e-06, 3.06442749e-06, 3.06442749e-06, 3.06442749e-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.08485621e-10, 1.08485621e-10, 1.08485621e-10, 1.08485621e-10,
7.72018377e-09, 7.72018377e-09, 7.72018377e-09, 7.72018377e-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.20336058e-12, 1.20336058e-12, 1.20336058e-12, 1.20336058e-12,
6.76381408e-11, 6.76381408e-11, 6.76381408e-11, 6.76381408e-11,
2.53837784e-09, 2.53837784e-09, 2.53837784e-09, 2.53837784e-09,
6.79851738e-08, 6.79851738e-08, 6.79851738e-08, 6.79851738e-08,
1.35400956e-06, 1.35400956e-06, 1.35400956e-06, 1.35400956e-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.29219655e-14, 1.29219655e-14, 1.29219655e-14, 1.29219655e-14,
6.25778002e-13, 6.25778002e-13, 6.25778002e-13, 6.25778002e-13,
2.24660625e-11, 2.24660625e-11, 2.24660625e-11, 2.24660625e-11,
6.13852625e-10, 6.13852625e-10, 6.13852625e-10, 6.13852625e-10,
1.31518529e-08, 1.31518529e-08, 1.31518529e-08, 1.31518529e-08,
2.25105228e-07, 2.25105228e-07, 2.25105228e-07, 2.25105228e-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.37429020e-15, 5.37429020e-15, 5.37429020e-15, 5.37429020e-15,
2.06171400e-13, 2.06171400e-13, 2.06171400e-13, 2.06171400e-13,
5.66869776e-12, 5.66869776e-12, 5.66869776e-12, 5.66869776e-12,
1.27514472e-10, 1.27514472e-10, 1.27514472e-10, 1.27514472e-10,
2.36717416e-09, 2.36717416e-09, 2.36717416e-09, 2.36717416e-09,
3.66285370e-08, 3.66285370e-08, 3.66285370e-08, 3.66285370e-08,
4.75793330e-07, 4.75793330e-07, 4.75793330e-07, 4.75793330e-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.81076471e-15, 1.81076471e-15, 1.81076471e-15, 1.81076471e-15,
5.33711504e-14, 5.33711504e-14, 5.33711504e-14, 5.33711504e-14,
1.23428190e-12, 1.23428190e-12, 1.23428190e-12, 1.23428190e-12,
2.43134311e-11, 2.43134311e-11, 2.43134311e-11, 2.43134311e-11,
4.08349063e-10, 4.08349063e-10, 4.08349063e-10, 4.08349063e-10,
5.88077889e-09, 5.88077889e-09, 5.88077889e-09, 5.88077889e-09,
7.29422446e-08, 7.29422446e-08, 7.29422446e-08, 7.29422446e-08,
7.81392347e-07, 7.81392347e-07, 7.81392347e-07, 7.81392347e-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.08967639e-14, 1.08967639e-14, 1.08967639e-14, 1.08967639e-14,
2.45974524e-13, 2.45974524e-13, 2.45974524e-13, 2.45974524e-13,
4.40462863e-12, 4.40462863e-12, 4.40462863e-12, 4.40462863e-12,
6.86629816e-11, 6.86629816e-11, 6.86629816e-11, 6.86629816e-11,
9.37024407e-10, 9.37024407e-10, 9.37024407e-10, 9.37024407e-10,
1.12236026e-08, 1.12236026e-08, 1.12236026e-08, 1.12236026e-08,
1.18207071e-07, 1.18207071e-07, 1.18207071e-07, 1.18207071e-07,
1.09557226e-06, 1.09557226e-06, 1.09557226e-06, 1.09557226e-06,
8.93418659e-06, 8.93418659e-06, 8.93418659e-06, 8.93418659e-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.80853178e-15, 1.80853178e-15, 1.80853178e-15, 1.80853178e-15,
4.50605708e-14, 4.50605708e-14, 4.50605708e-14, 4.50605708e-14,
7.68277414e-13, 7.68277414e-13, 7.68277414e-13, 7.68277414e-13,
1.13592346e-11, 1.13592346e-11, 1.13592346e-11, 1.13592346e-11,
1.48672828e-10, 1.48672828e-10, 1.48672828e-10, 1.48672828e-10,
1.73273071e-09, 1.73273071e-09, 1.73273071e-09, 1.73273071e-09,
1.80065707e-08, 1.80065707e-08, 1.80065707e-08, 1.80065707e-08,
1.66938237e-07, 1.66938237e-07, 1.66938237e-07, 1.66938237e-07,
1.38047342e-06, 1.38047342e-06, 1.38047342e-06, 1.38047342e-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.26032733e-15, 7.26032733e-15, 7.26032733e-15, 7.26032733e-15,
1.31204892e-13, 1.31204892e-13, 1.31204892e-13, 1.31204892e-13,
1.85915120e-12, 1.85915120e-12, 1.85915120e-12, 1.85915120e-12,
2.35214405e-11, 2.35214405e-11, 2.35214405e-11, 2.35214405e-11,
2.68232224e-10, 2.68232224e-10, 2.68232224e-10, 2.68232224e-10,
2.75761054e-09, 2.75761054e-09, 2.75761054e-09, 2.75761054e-09,
2.55719149e-08, 2.55719149e-08, 2.55719149e-08, 2.55719149e-08,
2.13858425e-07, 2.13858425e-07, 2.13858425e-07, 2.13858425e-07,
1.61179085e-06, 1.61179085e-06, 1.61179085e-06, 1.61179085e-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.25190511e-14, 2.25190511e-14, 2.25190511e-14, 2.25190511e-14,
3.02615567e-13, 3.02615567e-13, 3.02615567e-13, 3.02615567e-13,
3.71367056e-12, 3.71367056e-12, 3.71367056e-12, 3.71367056e-12,
4.16061676e-11, 4.16061676e-11, 4.16061676e-11, 4.16061676e-11,
4.24015854e-10, 4.24015854e-10, 4.24015854e-10, 4.24015854e-10,
3.93302747e-09, 3.93302747e-09, 3.93302747e-09, 3.93302747e-09,
3.32002464e-08, 3.32002464e-08, 3.32002464e-08, 3.32002464e-08,
2.54903714e-07, 2.54903714e-07, 2.54903714e-07, 2.54903714e-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,
2.98573500e-15, 2.98573500e-15, 2.98573500e-15, 2.98573500e-15,
5.04337422e-14, 5.04337422e-14, 5.04337422e-14, 5.04337422e-14,
5.87081027e-13, 5.87081027e-13, 5.87081027e-13, 5.87081027e-13,
6.46142562e-12, 6.46142562e-12, 6.46142562e-12, 6.46142562e-12,
6.53757287e-11, 6.53757287e-11, 6.53757287e-11, 6.53757287e-11,
6.06617304e-10, 6.06617304e-10, 6.06617304e-10, 6.06617304e-10,
5.16153937e-09, 5.16153937e-09, 5.16153937e-09, 5.16153937e-09,
4.02535992e-08, 4.02535992e-08, 4.02535992e-08, 4.02535992e-08,
2.87499821e-07, 2.87499821e-07, 2.87499821e-07, 2.87499821e-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,
6.27065778e-15, 6.27065778e-15, 6.27065778e-15, 6.27065778e-15,
9.36467290e-14, 9.36467290e-14, 9.36467290e-14, 9.36467290e-14,
1.00860484e-12, 1.00860484e-12, 1.00860484e-12, 1.00860484e-12,
1.01023072e-11, 1.01023072e-11, 1.01023072e-11, 1.01023072e-11,
9.37595522e-11, 9.37595522e-11, 9.37595522e-11, 9.37595522e-11,
8.03301393e-10, 8.03301393e-10, 8.03301393e-10, 8.03301393e-10,
6.34932545e-09, 6.34932545e-09, 6.34932545e-09, 6.34932545e-09,
4.62683756e-08, 4.62683756e-08, 4.62683756e-08, 4.62683756e-08,
3.10550363e-07, 3.10550363e-07, 3.10550363e-07, 3.10550363e-07,
1.91739686e-06, 1.91739686e-06, 1.91739686e-06, 1.91739686e-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.55883744e-13, 1.55883744e-13, 1.55883744e-13, 1.55883744e-13,
1.56381101e-12, 1.56381101e-12, 1.56381101e-12, 1.56381101e-12,
1.45269532e-11, 1.45269532e-11, 1.45269532e-11, 1.45269532e-11,
1.25181946e-10, 1.25181946e-10, 1.25181946e-10, 1.25181946e-10,
1.00094052e-09, 1.00094052e-09, 1.00094052e-09, 1.00094052e-09,
7.42144313e-09, 7.42144313e-09, 7.42144313e-09, 7.42144313e-09,
5.09825807e-08, 5.09825807e-08, 5.09825807e-08, 5.09825807e-08,
3.24157732e-07, 3.24157732e-07, 3.24157732e-07, 3.24157732e-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.25604166e-13, 2.25604166e-13, 2.25604166e-13, 2.25604166e-13,
2.25460528e-12, 2.25460528e-12, 2.25460528e-12, 2.25460528e-12,
1.95324109e-11, 1.95324109e-11, 1.95324109e-11, 1.95324109e-11,
1.57767209e-10, 1.57767209e-10, 1.57767209e-10, 1.57767209e-10,
1.18751939e-09, 1.18751939e-09, 1.18751939e-09, 1.18751939e-09,
8.32407208e-09, 8.32407208e-09, 8.32407208e-09, 8.32407208e-09,
5.42910762e-08, 5.42910762e-08, 5.42910762e-08, 5.42910762e-08,
3.29113215e-07, 3.29113215e-07, 3.29113215e-07, 3.29113215e-07,
1.85184066e-06, 1.85184066e-06, 1.85184066e-06, 1.85184066e-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.84156783e-12, 2.84156783e-12, 2.84156783e-12, 2.84156783e-12,
2.48780525e-11, 2.48780525e-11, 2.48780525e-11, 2.48780525e-11,
1.89651482e-10, 1.89651482e-10, 1.89651482e-10, 1.89651482e-10,
1.35316959e-09, 1.35316959e-09, 1.35316959e-09, 1.35316959e-09,
9.02460692e-09, 9.02460692e-09, 9.02460692e-09, 9.02460692e-09,
5.62089385e-08, 5.62089385e-08, 5.62089385e-08, 5.62089385e-08,
3.26589984e-07, 3.26589984e-07, 3.26589984e-07, 3.26589984e-07,
1.76783166e-06, 1.76783166e-06, 1.76783166e-06, 1.76783166e-06,
8.90072518e-06, 8.90072518e-06, 8.90072518e-06, 8.90072518e-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.79934020e-11, 2.79934020e-11, 2.79934020e-11, 2.79934020e-11,
2.19416444e-10, 2.19416444e-10, 2.19416444e-10, 2.19416444e-10,
1.49115343e-09, 1.49115343e-09, 1.49115343e-09, 1.49115343e-09,
9.51187283e-09, 9.51187283e-09, 9.51187283e-09, 9.51187283e-09,
5.68485401e-08, 5.68485401e-08, 5.68485401e-08, 5.68485401e-08,
3.17985035e-07, 3.17985035e-07, 3.17985035e-07, 3.17985035e-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.25423938e-10, 2.25423938e-10, 2.25423938e-10, 2.25423938e-10,
1.59939664e-09, 1.59939664e-09, 1.59939664e-09, 1.59939664e-09,
9.78961146e-09, 9.78961146e-09, 9.78961146e-09, 9.78961146e-09,
5.63718999e-08, 5.63718999e-08, 5.63718999e-08, 5.63718999e-08,
3.04684380e-07, 3.04684380e-07, 3.04684380e-07, 3.04684380e-07,
1.54374636e-06, 1.54374636e-06, 1.54374636e-06, 1.54374636e-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.52639387e-09, 1.52639387e-09, 1.52639387e-09, 1.52639387e-09,
9.88801510e-09, 9.88801510e-09, 9.88801510e-09, 9.88801510e-09,
5.49631662e-08, 5.49631662e-08, 5.49631662e-08, 5.49631662e-08,
2.87970266e-07, 2.87970266e-07, 2.87970266e-07, 2.87970266e-07,
1.41808508e-06, 1.41808508e-06, 1.41808508e-06, 1.41808508e-06,
6.55412035e-06, 6.55412035e-06, 6.55412035e-06, 6.55412035e-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.88471412e-09, 8.88471412e-09, 8.88471412e-09, 8.88471412e-09,
5.29210744e-08, 5.29210744e-08, 5.29210744e-08, 5.29210744e-08,
2.68968981e-07, 2.68968981e-07, 2.68968981e-07, 2.68968981e-07,
1.29058595e-06, 1.29058595e-06, 1.29058595e-06, 1.29058595e-06,
5.82613010e-06, 5.82613010e-06, 5.82613010e-06, 5.82613010e-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.52514067e-08, 4.52514067e-08, 4.52514067e-08, 4.52514067e-08,
2.49281915e-07, 2.49281915e-07, 2.49281915e-07, 2.49281915e-07,
1.16502485e-06, 1.16502485e-06, 1.16502485e-06, 1.16502485e-06,
5.14742917e-06, 5.14742917e-06, 5.14742917e-06, 5.14742917e-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.04607723e-07, 2.04607723e-07, 2.04607723e-07, 2.04607723e-07,
1.04753501e-06, 1.04753501e-06, 1.04753501e-06, 1.04753501e-06,
4.52318124e-06, 4.52318124e-06, 4.52318124e-06, 4.52318124e-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.31212440e-07, 8.31212440e-07, 8.31212440e-07, 8.31212440e-07,
3.97120542e-06, 3.97120542e-06, 3.97120542e-06, 3.97120542e-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.06442749e-06, 3.06442749e-06, 3.06442749e-06, 3.06442749e-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.08485621e-10, 1.08485621e-10, 1.08485621e-10, 1.08485621e-10,
7.72018377e-09, 7.72018377e-09, 7.72018377e-09, 7.72018377e-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.20336058e-12, 1.20336058e-12, 1.20336058e-12, 1.20336058e-12,
6.76381408e-11, 6.76381408e-11, 6.76381408e-11, 6.76381408e-11,
2.53837784e-09, 2.53837784e-09, 2.53837784e-09, 2.53837784e-09,
6.79851738e-08, 6.79851738e-08, 6.79851738e-08, 6.79851738e-08,
1.35400956e-06, 1.35400956e-06, 1.35400956e-06, 1.35400956e-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.29219655e-14, 1.29219655e-14, 1.29219655e-14, 1.29219655e-14,
6.25778002e-13, 6.25778002e-13, 6.25778002e-13, 6.25778002e-13,
2.24660625e-11, 2.24660625e-11, 2.24660625e-11, 2.24660625e-11,
6.13852625e-10, 6.13852625e-10, 6.13852625e-10, 6.13852625e-10,
1.31518529e-08, 1.31518529e-08, 1.31518529e-08, 1.31518529e-08,
2.25105228e-07, 2.25105228e-07, 2.25105228e-07, 2.25105228e-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.37429020e-15, 5.37429020e-15, 5.37429020e-15, 5.37429020e-15,
2.06171400e-13, 2.06171400e-13, 2.06171400e-13, 2.06171400e-13,
5.66869776e-12, 5.66869776e-12, 5.66869776e-12, 5.66869776e-12,
1.27514472e-10, 1.27514472e-10, 1.27514472e-10, 1.27514472e-10,
2.36717416e-09, 2.36717416e-09, 2.36717416e-09, 2.36717416e-09,
3.66285370e-08, 3.66285370e-08, 3.66285370e-08, 3.66285370e-08,
4.75793330e-07, 4.75793330e-07, 4.75793330e-07, 4.75793330e-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.81076471e-15, 1.81076471e-15, 1.81076471e-15, 1.81076471e-15,
5.33711504e-14, 5.33711504e-14, 5.33711504e-14, 5.33711504e-14,
1.23428190e-12, 1.23428190e-12, 1.23428190e-12, 1.23428190e-12,
2.43134311e-11, 2.43134311e-11, 2.43134311e-11, 2.43134311e-11,
4.08349063e-10, 4.08349063e-10, 4.08349063e-10, 4.08349063e-10,
5.88077889e-09, 5.88077889e-09, 5.88077889e-09, 5.88077889e-09,
7.29422446e-08, 7.29422446e-08, 7.29422446e-08, 7.29422446e-08,
7.81392347e-07, 7.81392347e-07, 7.81392347e-07, 7.81392347e-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.08967639e-14, 1.08967639e-14, 1.08967639e-14, 1.08967639e-14,
2.45974524e-13, 2.45974524e-13, 2.45974524e-13, 2.45974524e-13,
4.40462863e-12, 4.40462863e-12, 4.40462863e-12, 4.40462863e-12,
6.86629816e-11, 6.86629816e-11, 6.86629816e-11, 6.86629816e-11,
9.37024407e-10, 9.37024407e-10, 9.37024407e-10, 9.37024407e-10,
1.12236026e-08, 1.12236026e-08, 1.12236026e-08, 1.12236026e-08,
1.18207071e-07, 1.18207071e-07, 1.18207071e-07, 1.18207071e-07,
1.09557226e-06, 1.09557226e-06, 1.09557226e-06, 1.09557226e-06,
8.93418659e-06, 8.93418659e-06, 8.93418659e-06, 8.93418659e-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.80853178e-15, 1.80853178e-15, 1.80853178e-15, 1.80853178e-15,
4.50605708e-14, 4.50605708e-14, 4.50605708e-14, 4.50605708e-14,
7.68277414e-13, 7.68277414e-13, 7.68277414e-13, 7.68277414e-13,
1.13592346e-11, 1.13592346e-11, 1.13592346e-11, 1.13592346e-11,
1.48672828e-10, 1.48672828e-10, 1.48672828e-10, 1.48672828e-10,
1.73273071e-09, 1.73273071e-09, 1.73273071e-09, 1.73273071e-09,
1.80065707e-08, 1.80065707e-08, 1.80065707e-08, 1.80065707e-08,
1.66938237e-07, 1.66938237e-07, 1.66938237e-07, 1.66938237e-07,
1.38047342e-06, 1.38047342e-06, 1.38047342e-06, 1.38047342e-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.26032733e-15, 7.26032733e-15, 7.26032733e-15, 7.26032733e-15,
1.31204892e-13, 1.31204892e-13, 1.31204892e-13, 1.31204892e-13,
1.85915120e-12, 1.85915120e-12, 1.85915120e-12, 1.85915120e-12,
2.35214405e-11, 2.35214405e-11, 2.35214405e-11, 2.35214405e-11,
2.68232224e-10, 2.68232224e-10, 2.68232224e-10, 2.68232224e-10,
2.75761054e-09, 2.75761054e-09, 2.75761054e-09, 2.75761054e-09,
2.55719149e-08, 2.55719149e-08, 2.55719149e-08, 2.55719149e-08,
2.13858425e-07, 2.13858425e-07, 2.13858425e-07, 2.13858425e-07,
1.61179085e-06, 1.61179085e-06, 1.61179085e-06, 1.61179085e-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.25190511e-14, 2.25190511e-14, 2.25190511e-14, 2.25190511e-14,
3.02615567e-13, 3.02615567e-13, 3.02615567e-13, 3.02615567e-13,
3.71367056e-12, 3.71367056e-12, 3.71367056e-12, 3.71367056e-12,
4.16061676e-11, 4.16061676e-11, 4.16061676e-11, 4.16061676e-11,
4.24015854e-10, 4.24015854e-10, 4.24015854e-10, 4.24015854e-10,
3.93302747e-09, 3.93302747e-09, 3.93302747e-09, 3.93302747e-09,
3.32002464e-08, 3.32002464e-08, 3.32002464e-08, 3.32002464e-08,
2.54903714e-07, 2.54903714e-07, 2.54903714e-07, 2.54903714e-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,
2.98573500e-15, 2.98573500e-15, 2.98573500e-15, 2.98573500e-15,
5.04337422e-14, 5.04337422e-14, 5.04337422e-14, 5.04337422e-14,
5.87081027e-13, 5.87081027e-13, 5.87081027e-13, 5.87081027e-13,
6.46142562e-12, 6.46142562e-12, 6.46142562e-12, 6.46142562e-12,
6.53757287e-11, 6.53757287e-11, 6.53757287e-11, 6.53757287e-11,
6.06617304e-10, 6.06617304e-10, 6.06617304e-10, 6.06617304e-10,
5.16153937e-09, 5.16153937e-09, 5.16153937e-09, 5.16153937e-09,
4.02535992e-08, 4.02535992e-08, 4.02535992e-08, 4.02535992e-08,
2.87499821e-07, 2.87499821e-07, 2.87499821e-07, 2.87499821e-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,
6.27065778e-15, 6.27065778e-15, 6.27065778e-15, 6.27065778e-15,
9.36467290e-14, 9.36467290e-14, 9.36467290e-14, 9.36467290e-14,
1.00860484e-12, 1.00860484e-12, 1.00860484e-12, 1.00860484e-12,
1.01023072e-11, 1.01023072e-11, 1.01023072e-11, 1.01023072e-11,
9.37595522e-11, 9.37595522e-11, 9.37595522e-11, 9.37595522e-11,
8.03301393e-10, 8.03301393e-10, 8.03301393e-10, 8.03301393e-10,
6.34932545e-09, 6.34932545e-09, 6.34932545e-09, 6.34932545e-09,
4.62683756e-08, 4.62683756e-08, 4.62683756e-08, 4.62683756e-08,
3.10550363e-07, 3.10550363e-07, 3.10550363e-07, 3.10550363e-07,
1.91739686e-06, 1.91739686e-06, 1.91739686e-06, 1.91739686e-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.55883744e-13, 1.55883744e-13, 1.55883744e-13, 1.55883744e-13,
1.56381101e-12, 1.56381101e-12, 1.56381101e-12, 1.56381101e-12,
1.45269532e-11, 1.45269532e-11, 1.45269532e-11, 1.45269532e-11,
1.25181946e-10, 1.25181946e-10, 1.25181946e-10, 1.25181946e-10,
1.00094052e-09, 1.00094052e-09, 1.00094052e-09, 1.00094052e-09,
7.42144313e-09, 7.42144313e-09, 7.42144313e-09, 7.42144313e-09,
5.09825807e-08, 5.09825807e-08, 5.09825807e-08, 5.09825807e-08,
3.24157732e-07, 3.24157732e-07, 3.24157732e-07, 3.24157732e-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.25604166e-13, 2.25604166e-13, 2.25604166e-13, 2.25604166e-13,
2.25460528e-12, 2.25460528e-12, 2.25460528e-12, 2.25460528e-12,
1.95324109e-11, 1.95324109e-11, 1.95324109e-11, 1.95324109e-11,
1.57767209e-10, 1.57767209e-10, 1.57767209e-10, 1.57767209e-10,
1.18751939e-09, 1.18751939e-09, 1.18751939e-09, 1.18751939e-09,
8.32407208e-09, 8.32407208e-09, 8.32407208e-09, 8.32407208e-09,
5.42910762e-08, 5.42910762e-08, 5.42910762e-08, 5.42910762e-08,
3.29113215e-07, 3.29113215e-07, 3.29113215e-07, 3.29113215e-07,
1.85184066e-06, 1.85184066e-06, 1.85184066e-06, 1.85184066e-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.84156783e-12, 2.84156783e-12, 2.84156783e-12, 2.84156783e-12,
2.48780525e-11, 2.48780525e-11, 2.48780525e-11, 2.48780525e-11,
1.89651482e-10, 1.89651482e-10, 1.89651482e-10, 1.89651482e-10,
1.35316959e-09, 1.35316959e-09, 1.35316959e-09, 1.35316959e-09,
9.02460692e-09, 9.02460692e-09, 9.02460692e-09, 9.02460692e-09,
5.62089385e-08, 5.62089385e-08, 5.62089385e-08, 5.62089385e-08,
3.26589984e-07, 3.26589984e-07, 3.26589984e-07, 3.26589984e-07,
1.76783166e-06, 1.76783166e-06, 1.76783166e-06, 1.76783166e-06,
8.90072518e-06, 8.90072518e-06, 8.90072518e-06, 8.90072518e-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.79934020e-11, 2.79934020e-11, 2.79934020e-11, 2.79934020e-11,
2.19416444e-10, 2.19416444e-10, 2.19416444e-10, 2.19416444e-10,
1.49115343e-09, 1.49115343e-09, 1.49115343e-09, 1.49115343e-09,
9.51187283e-09, 9.51187283e-09, 9.51187283e-09, 9.51187283e-09,
5.68485401e-08, 5.68485401e-08, 5.68485401e-08, 5.68485401e-08,
3.17985035e-07, 3.17985035e-07, 3.17985035e-07, 3.17985035e-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.25423938e-10, 2.25423938e-10, 2.25423938e-10, 2.25423938e-10,
1.59939664e-09, 1.59939664e-09, 1.59939664e-09, 1.59939664e-09,
9.78961146e-09, 9.78961146e-09, 9.78961146e-09, 9.78961146e-09,
5.63718999e-08, 5.63718999e-08, 5.63718999e-08, 5.63718999e-08,
3.04684380e-07, 3.04684380e-07, 3.04684380e-07, 3.04684380e-07,
1.54374636e-06, 1.54374636e-06, 1.54374636e-06, 1.54374636e-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.52639387e-09, 1.52639387e-09, 1.52639387e-09, 1.52639387e-09,
9.88801510e-09, 9.88801510e-09, 9.88801510e-09, 9.88801510e-09,
5.49631662e-08, 5.49631662e-08, 5.49631662e-08, 5.49631662e-08,
2.87970266e-07, 2.87970266e-07, 2.87970266e-07, 2.87970266e-07,
1.41808508e-06, 1.41808508e-06, 1.41808508e-06, 1.41808508e-06,
6.55412035e-06, 6.55412035e-06, 6.55412035e-06, 6.55412035e-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.88471412e-09, 8.88471412e-09, 8.88471412e-09, 8.88471412e-09,
5.29210744e-08, 5.29210744e-08, 5.29210744e-08, 5.29210744e-08,
2.68968981e-07, 2.68968981e-07, 2.68968981e-07, 2.68968981e-07,
1.29058595e-06, 1.29058595e-06, 1.29058595e-06, 1.29058595e-06,
5.82613010e-06, 5.82613010e-06, 5.82613010e-06, 5.82613010e-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.52514067e-08, 4.52514067e-08, 4.52514067e-08, 4.52514067e-08,
2.49281915e-07, 2.49281915e-07, 2.49281915e-07, 2.49281915e-07,
1.16502485e-06, 1.16502485e-06, 1.16502485e-06, 1.16502485e-06,
5.14742917e-06, 5.14742917e-06, 5.14742917e-06, 5.14742917e-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.04607723e-07, 2.04607723e-07, 2.04607723e-07, 2.04607723e-07,
1.04753501e-06, 1.04753501e-06, 1.04753501e-06, 1.04753501e-06,
4.52318124e-06, 4.52318124e-06, 4.52318124e-06, 4.52318124e-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.31212440e-07, 8.31212440e-07, 8.31212440e-07, 8.31212440e-07,
3.97120542e-06, 3.97120542e-06, 3.97120542e-06, 3.97120542e-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.06442749e-06, 3.06442749e-06, 3.06442749e-06, 3.06442749e-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.08485621e-10, 1.08485621e-10, 1.08485621e-10, 1.08485621e-10,
7.72018377e-09, 7.72018377e-09, 7.72018377e-09, 7.72018377e-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.20336058e-12, 1.20336058e-12, 1.20336058e-12, 1.20336058e-12,
6.76381408e-11, 6.76381408e-11, 6.76381408e-11, 6.76381408e-11,
2.53837784e-09, 2.53837784e-09, 2.53837784e-09, 2.53837784e-09,
6.79851738e-08, 6.79851738e-08, 6.79851738e-08, 6.79851738e-08,
1.35400956e-06, 1.35400956e-06, 1.35400956e-06, 1.35400956e-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.29219655e-14, 1.29219655e-14, 1.29219655e-14, 1.29219655e-14,
6.25778002e-13, 6.25778002e-13, 6.25778002e-13, 6.25778002e-13,
2.24660625e-11, 2.24660625e-11, 2.24660625e-11, 2.24660625e-11,
6.13852625e-10, 6.13852625e-10, 6.13852625e-10, 6.13852625e-10,
1.31518529e-08, 1.31518529e-08, 1.31518529e-08, 1.31518529e-08,
2.25105228e-07, 2.25105228e-07, 2.25105228e-07, 2.25105228e-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.37429020e-15, 5.37429020e-15, 5.37429020e-15, 5.37429020e-15,
2.06171400e-13, 2.06171400e-13, 2.06171400e-13, 2.06171400e-13,
5.66869776e-12, 5.66869776e-12, 5.66869776e-12, 5.66869776e-12,
1.27514472e-10, 1.27514472e-10, 1.27514472e-10, 1.27514472e-10,
2.36717416e-09, 2.36717416e-09, 2.36717416e-09, 2.36717416e-09,
3.66285370e-08, 3.66285370e-08, 3.66285370e-08, 3.66285370e-08,
4.75793330e-07, 4.75793330e-07, 4.75793330e-07, 4.75793330e-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.81076471e-15, 1.81076471e-15, 1.81076471e-15, 1.81076471e-15,
5.33711504e-14, 5.33711504e-14, 5.33711504e-14, 5.33711504e-14,
1.23428190e-12, 1.23428190e-12, 1.23428190e-12, 1.23428190e-12,
2.43134311e-11, 2.43134311e-11, 2.43134311e-11, 2.43134311e-11,
4.08349063e-10, 4.08349063e-10, 4.08349063e-10, 4.08349063e-10,
5.88077889e-09, 5.88077889e-09, 5.88077889e-09, 5.88077889e-09,
7.29422446e-08, 7.29422446e-08, 7.29422446e-08, 7.29422446e-08,
7.81392347e-07, 7.81392347e-07, 7.81392347e-07, 7.81392347e-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.08967639e-14, 1.08967639e-14, 1.08967639e-14, 1.08967639e-14,
2.45974524e-13, 2.45974524e-13, 2.45974524e-13, 2.45974524e-13,
4.40462863e-12, 4.40462863e-12, 4.40462863e-12, 4.40462863e-12,
6.86629816e-11, 6.86629816e-11, 6.86629816e-11, 6.86629816e-11,
9.37024407e-10, 9.37024407e-10, 9.37024407e-10, 9.37024407e-10,
1.12236026e-08, 1.12236026e-08, 1.12236026e-08, 1.12236026e-08,
1.18207071e-07, 1.18207071e-07, 1.18207071e-07, 1.18207071e-07,
1.09557226e-06, 1.09557226e-06, 1.09557226e-06, 1.09557226e-06,
8.93418659e-06, 8.93418659e-06, 8.93418659e-06, 8.93418659e-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.80853178e-15, 1.80853178e-15, 1.80853178e-15, 1.80853178e-15,
4.50605708e-14, 4.50605708e-14, 4.50605708e-14, 4.50605708e-14,
7.68277414e-13, 7.68277414e-13, 7.68277414e-13, 7.68277414e-13,
1.13592346e-11, 1.13592346e-11, 1.13592346e-11, 1.13592346e-11,
1.48672828e-10, 1.48672828e-10, 1.48672828e-10, 1.48672828e-10,
1.73273071e-09, 1.73273071e-09, 1.73273071e-09, 1.73273071e-09,
1.80065707e-08, 1.80065707e-08, 1.80065707e-08, 1.80065707e-08,
1.66938237e-07, 1.66938237e-07, 1.66938237e-07, 1.66938237e-07,
1.38047342e-06, 1.38047342e-06, 1.38047342e-06, 1.38047342e-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.26032733e-15, 7.26032733e-15, 7.26032733e-15, 7.26032733e-15,
1.31204892e-13, 1.31204892e-13, 1.31204892e-13, 1.31204892e-13,
1.85915120e-12, 1.85915120e-12, 1.85915120e-12, 1.85915120e-12,
2.35214405e-11, 2.35214405e-11, 2.35214405e-11, 2.35214405e-11,
2.68232224e-10, 2.68232224e-10, 2.68232224e-10, 2.68232224e-10,
2.75761054e-09, 2.75761054e-09, 2.75761054e-09, 2.75761054e-09,
2.55719149e-08, 2.55719149e-08, 2.55719149e-08, 2.55719149e-08,
2.13858425e-07, 2.13858425e-07, 2.13858425e-07, 2.13858425e-07,
1.61179085e-06, 1.61179085e-06, 1.61179085e-06, 1.61179085e-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.25190511e-14, 2.25190511e-14, 2.25190511e-14, 2.25190511e-14,
3.02615567e-13, 3.02615567e-13, 3.02615567e-13, 3.02615567e-13,
3.71367056e-12, 3.71367056e-12, 3.71367056e-12, 3.71367056e-12,
4.16061676e-11, 4.16061676e-11, 4.16061676e-11, 4.16061676e-11,
4.24015854e-10, 4.24015854e-10, 4.24015854e-10, 4.24015854e-10,
3.93302747e-09, 3.93302747e-09, 3.93302747e-09, 3.93302747e-09,
3.32002464e-08, 3.32002464e-08, 3.32002464e-08, 3.32002464e-08,
2.54903714e-07, 2.54903714e-07, 2.54903714e-07, 2.54903714e-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,
2.98573500e-15, 2.98573500e-15, 2.98573500e-15, 2.98573500e-15,
5.04337422e-14, 5.04337422e-14, 5.04337422e-14, 5.04337422e-14,
5.87081027e-13, 5.87081027e-13, 5.87081027e-13, 5.87081027e-13,
6.46142562e-12, 6.46142562e-12, 6.46142562e-12, 6.46142562e-12,
6.53757287e-11, 6.53757287e-11, 6.53757287e-11, 6.53757287e-11,
6.06617304e-10, 6.06617304e-10, 6.06617304e-10, 6.06617304e-10,
5.16153937e-09, 5.16153937e-09, 5.16153937e-09, 5.16153937e-09,
4.02535992e-08, 4.02535992e-08, 4.02535992e-08, 4.02535992e-08,
2.87499821e-07, 2.87499821e-07, 2.87499821e-07, 2.87499821e-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,
6.27065778e-15, 6.27065778e-15, 6.27065778e-15, 6.27065778e-15,
9.36467290e-14, 9.36467290e-14, 9.36467290e-14, 9.36467290e-14,
1.00860484e-12, 1.00860484e-12, 1.00860484e-12, 1.00860484e-12,
1.01023072e-11, 1.01023072e-11, 1.01023072e-11, 1.01023072e-11,
9.37595522e-11, 9.37595522e-11, 9.37595522e-11, 9.37595522e-11,
8.03301393e-10, 8.03301393e-10, 8.03301393e-10, 8.03301393e-10,
6.34932545e-09, 6.34932545e-09, 6.34932545e-09, 6.34932545e-09,
4.62683756e-08, 4.62683756e-08, 4.62683756e-08, 4.62683756e-08,
3.10550363e-07, 3.10550363e-07, 3.10550363e-07, 3.10550363e-07,
1.91739686e-06, 1.91739686e-06, 1.91739686e-06, 1.91739686e-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.55883744e-13, 1.55883744e-13, 1.55883744e-13, 1.55883744e-13,
1.56381101e-12, 1.56381101e-12, 1.56381101e-12, 1.56381101e-12,
1.45269532e-11, 1.45269532e-11, 1.45269532e-11, 1.45269532e-11,
1.25181946e-10, 1.25181946e-10, 1.25181946e-10, 1.25181946e-10,
1.00094052e-09, 1.00094052e-09, 1.00094052e-09, 1.00094052e-09,
7.42144313e-09, 7.42144313e-09, 7.42144313e-09, 7.42144313e-09,
5.09825807e-08, 5.09825807e-08, 5.09825807e-08, 5.09825807e-08,
3.24157732e-07, 3.24157732e-07, 3.24157732e-07, 3.24157732e-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.25604166e-13, 2.25604166e-13, 2.25604166e-13, 2.25604166e-13,
2.25460528e-12, 2.25460528e-12, 2.25460528e-12, 2.25460528e-12,
1.95324109e-11, 1.95324109e-11, 1.95324109e-11, 1.95324109e-11,
1.57767209e-10, 1.57767209e-10, 1.57767209e-10, 1.57767209e-10,
1.18751939e-09, 1.18751939e-09, 1.18751939e-09, 1.18751939e-09,
8.32407208e-09, 8.32407208e-09, 8.32407208e-09, 8.32407208e-09,
5.42910762e-08, 5.42910762e-08, 5.42910762e-08, 5.42910762e-08,
3.29113215e-07, 3.29113215e-07, 3.29113215e-07, 3.29113215e-07,
1.85184066e-06, 1.85184066e-06, 1.85184066e-06, 1.85184066e-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.84156783e-12, 2.84156783e-12, 2.84156783e-12, 2.84156783e-12,
2.48780525e-11, 2.48780525e-11, 2.48780525e-11, 2.48780525e-11,
1.89651482e-10, 1.89651482e-10, 1.89651482e-10, 1.89651482e-10,
1.35316959e-09, 1.35316959e-09, 1.35316959e-09, 1.35316959e-09,
9.02460692e-09, 9.02460692e-09, 9.02460692e-09, 9.02460692e-09,
5.62089385e-08, 5.62089385e-08, 5.62089385e-08, 5.62089385e-08,
3.26589984e-07, 3.26589984e-07, 3.26589984e-07, 3.26589984e-07,
1.76783166e-06, 1.76783166e-06, 1.76783166e-06, 1.76783166e-06,
8.90072518e-06, 8.90072518e-06, 8.90072518e-06, 8.90072518e-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.79934020e-11, 2.79934020e-11, 2.79934020e-11, 2.79934020e-11,
2.19416444e-10, 2.19416444e-10, 2.19416444e-10, 2.19416444e-10,
1.49115343e-09, 1.49115343e-09, 1.49115343e-09, 1.49115343e-09,
9.51187283e-09, 9.51187283e-09, 9.51187283e-09, 9.51187283e-09,
5.68485401e-08, 5.68485401e-08, 5.68485401e-08, 5.68485401e-08,
3.17985035e-07, 3.17985035e-07, 3.17985035e-07, 3.17985035e-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.25423938e-10, 2.25423938e-10, 2.25423938e-10, 2.25423938e-10,
1.59939664e-09, 1.59939664e-09, 1.59939664e-09, 1.59939664e-09,
9.78961146e-09, 9.78961146e-09, 9.78961146e-09, 9.78961146e-09,
5.63718999e-08, 5.63718999e-08, 5.63718999e-08, 5.63718999e-08,
3.04684380e-07, 3.04684380e-07, 3.04684380e-07, 3.04684380e-07,
1.54374636e-06, 1.54374636e-06, 1.54374636e-06, 1.54374636e-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.52639387e-09, 1.52639387e-09, 1.52639387e-09, 1.52639387e-09,
9.88801510e-09, 9.88801510e-09, 9.88801510e-09, 9.88801510e-09,
5.49631662e-08, 5.49631662e-08, 5.49631662e-08, 5.49631662e-08,
2.87970266e-07, 2.87970266e-07, 2.87970266e-07, 2.87970266e-07,
1.41808508e-06, 1.41808508e-06, 1.41808508e-06, 1.41808508e-06,
6.55412035e-06, 6.55412035e-06, 6.55412035e-06, 6.55412035e-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.88471412e-09, 8.88471412e-09, 8.88471412e-09, 8.88471412e-09,
5.29210744e-08, 5.29210744e-08, 5.29210744e-08, 5.29210744e-08,
2.68968981e-07, 2.68968981e-07, 2.68968981e-07, 2.68968981e-07,
1.29058595e-06, 1.29058595e-06, 1.29058595e-06, 1.29058595e-06,
5.82613010e-06, 5.82613010e-06, 5.82613010e-06, 5.82613010e-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.52514067e-08, 4.52514067e-08, 4.52514067e-08, 4.52514067e-08,
2.49281915e-07, 2.49281915e-07, 2.49281915e-07, 2.49281915e-07,
1.16502485e-06, 1.16502485e-06, 1.16502485e-06, 1.16502485e-06,
5.14742917e-06, 5.14742917e-06, 5.14742917e-06, 5.14742917e-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.04607723e-07, 2.04607723e-07, 2.04607723e-07, 2.04607723e-07,
1.04753501e-06, 1.04753501e-06, 1.04753501e-06, 1.04753501e-06,
4.52318124e-06, 4.52318124e-06, 4.52318124e-06, 4.52318124e-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.31212440e-07, 8.31212440e-07, 8.31212440e-07, 8.31212440e-07,
3.97120542e-06, 3.97120542e-06, 3.97120542e-06, 3.97120542e-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.06442749e-06, 3.06442749e-06, 3.06442749e-06, 3.06442749e-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 13.83 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 (50.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.17 us (0.3%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 378.14 us (97.2%)
LB move op cnt : 0
LB apply : 3.47 us (0.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 : 8.46 us (2.2%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 366.37 us (94.7%)
LB move op cnt : 0
LB apply : 2.53 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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.3868e+05 | 65536 | 2 | 1.935e-01 | 0.0% | 1.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.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 204.32 us (91.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (54.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 | 5.5921e+05 | 65536 | 2 | 1.172e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.804836637837506 (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.93 us (2.6%)
patch tree reduce : 2.62 us (1.1%)
gen split merge : 1.41 us (0.6%)
split / merge op : 0/0
apply split merge : 1.74 us (0.8%)
LB compute : 207.33 us (90.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (56.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 | 5.5624e+05 | 65536 | 2 | 1.178e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.779315522129836 (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.23 us (1.9%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 250.91 us (92.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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 | 5.7661e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.954270571377171 (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.41 us (1.9%)
patch tree reduce : 2.33 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 260.79 us (92.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (56.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 | 5.9640e+05 | 65536 | 2 | 1.099e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.124367006335058 (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.11 us (2.3%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 245.14 us (92.2%)
LB move op cnt : 0
LB apply : 3.60 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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 | 5.9443e+05 | 65536 | 2 | 1.102e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.10745040804302 (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.51 us (2.1%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.29 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 244.49 us (92.3%)
LB move op cnt : 0
LB apply : 3.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 | 5.9178e+05 | 65536 | 2 | 1.107e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.08468049988456 (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.86 us (2.6%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 207.78 us (90.9%)
LB move op cnt : 0
LB apply : 3.49 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.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 | 6.0775e+05 | 65536 | 2 | 1.078e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.221841756967546 (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.48 us (2.2%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 223.56 us (91.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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 | 6.0829e+05 | 65536 | 2 | 1.077e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.226458435542098 (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.35 us (2.2%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 225.53 us (92.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.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 | 6.0897e+05 | 65536 | 2 | 1.076e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.232361192978323 (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 (2.6%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 195.19 us (91.0%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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 | 5.2807e+05 | 65536 | 2 | 1.241e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.537224810845588 (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.63 us (2.3%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 222.78 us (91.7%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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 | 6.1148e+05 | 65536 | 2 | 1.072e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.253951342993718 (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.61 us (2.5%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 202.22 us (91.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (51.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.5399e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.900736574941745 (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.73 us (2.2%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 236.67 us (92.2%)
LB move op cnt : 0
LB apply : 3.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.2621e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6620333301451256 (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.52 us (2.0%)
patch tree reduce : 2.25 us (0.8%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 255.16 us (92.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.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.2698e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.668690458172456 (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.82 us (2.3%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 229.04 us (92.0%)
LB move op cnt : 0
LB apply : 3.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (54.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.1873e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5978187024399766 (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.90 us (2.3%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 233.42 us (91.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.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.2007e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6092813774246584 (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.74 us (2.4%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 221.55 us (91.9%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (51.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.1364e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.554035060589124 (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.60 us (2.3%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 224.82 us (92.0%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (54.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.9800e+05 | 65536 | 2 | 1.647e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.419633856844495 (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.70 us (2.2%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 243.11 us (92.1%)
LB move op cnt : 0
LB apply : 3.66 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.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.3155e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.70791135837793 (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.37 us (1.7%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 300.45 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.24 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.3378e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.727127133241412 (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 (2.2%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 235.22 us (92.3%)
LB move op cnt : 0
LB apply : 3.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.3329e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7228992627639426 (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.44 us (2.2%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 222.12 us (91.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (58.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.2798e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6772871987247693 (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.9%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 279.49 us (93.3%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.2247e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6298703722804704 (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.46 us (2.4%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 205.46 us (91.3%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.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.0301e+05 | 65536 | 2 | 1.626e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.462703018266325 (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.48 us (2.5%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 200.12 us (91.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (53.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.2577e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6582377027696453 (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.59 us (2.1%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 248.85 us (92.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (53.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.2447e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6471067844761813 (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.75 us (2.5%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 208.31 us (91.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.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.3416e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7303308347012907 (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.42 us (2.3%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 211.84 us (91.8%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (54.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.2824e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6795021714067055 (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.15 us (2.1%)
patch tree reduce : 2.30 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 231.17 us (92.3%)
LB move op cnt : 0
LB apply : 3.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.2457e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6479158285472866 (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 : 10.09 us (4.5%)
patch tree reduce : 2.51 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 200.72 us (89.2%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (54.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.3210e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7126892669521236 (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.25 us (2.3%)
patch tree reduce : 2.59 us (1.1%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 212.30 us (91.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.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.2124e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.619311958613691 (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.79 us (2.3%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 231.79 us (92.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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.3025e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6967913312057212 (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.48 us (2.5%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 203.00 us (91.1%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.2865e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6829708777121835 (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 (2.2%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 240.96 us (92.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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.3918e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7734941313846786 (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.57 us (1.9%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 271.46 us (93.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 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.3705e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7551842471909906 (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.74 us (2.5%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 206.31 us (91.5%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (54.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.2245e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.629770296432866 (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.64 us (2.6%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 200.58 us (91.0%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.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.2629e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6626996256522575 (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.85 us (2.7%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 200.44 us (91.1%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.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.3322e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7222693000019085 (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.21 us (2.3%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 208.91 us (91.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (52.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.2102e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.617474763235165 (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.78 us (2.1%)
patch tree reduce : 2.26 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 257.48 us (92.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.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.1794e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5910169301136756 (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.34 us (2.5%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 195.60 us (90.9%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 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.0967e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5199740183307013 (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.51 us (2.4%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 209.08 us (91.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (52.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.1696e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5825357631647603 (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.95 us (2.5%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 221.15 us (91.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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.2417e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6445493240138185 (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.59 us (2.5%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 205.71 us (91.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.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.1771e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5890318233155476 (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.81 us (2.6%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 204.27 us (91.0%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (54.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.1952e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6045667749274553 (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.78 us (2.3%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 235.20 us (91.9%)
LB move op cnt : 0
LB apply : 3.66 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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.2440e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6465324350616046 (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.71 us (2.3%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 228.87 us (92.0%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (58.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.1814e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5927471561906654 (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.42 us (2.0%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 250.17 us (92.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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.1757e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.58777410073653 (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.95 us (2.7%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 204.36 us (91.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (52.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.1938e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.603393282223087 (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.58 us (2.5%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 200.02 us (91.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (51.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.1608e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5749897373245143 (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.65 us (2.5%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 206.54 us (91.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (49.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.0624e+05 | 65536 | 2 | 1.613e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4904546376076757 (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.79 us (2.3%)
patch tree reduce : 13.10 us (5.1%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 224.22 us (87.9%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.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.1022e+05 | 65536 | 2 | 1.598e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5246264705481876 (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.52 us (2.1%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 242.75 us (92.4%)
LB move op cnt : 0
LB apply : 3.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 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.0532e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4825743830989326 (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 (2.3%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 216.63 us (91.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.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.0814e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.506761331970457 (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 : 8.10 us (3.7%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 197.13 us (90.0%)
LB move op cnt : 0
LB apply : 2.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.1739e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.586231233896155 (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.24 us (1.9%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 250.44 us (93.0%)
LB move op cnt : 0
LB apply : 3.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (53.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.1874e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.597904150300655 (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.61 us (2.2%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 239.80 us (92.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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.2758e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.673824798770049 (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.57 us (2.4%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 214.36 us (91.5%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (50.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.2706e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.669332159204609 (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.69 us (2.4%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 220.68 us (91.6%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (47.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.2074e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6150296005329547 (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.55 us (2.4%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 209.45 us (89.4%)
LB move op cnt : 0
LB apply : 5.74 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (53.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.1994e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6081471688523212 (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.65 us (2.4%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 212.24 us (91.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.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.1691e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.582109653772389 (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.74 us (2.1%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 259.17 us (92.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (76.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.9360e+05 | 65536 | 2 | 1.665e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3818370530503037 (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.24 us (2.7%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 213.71 us (90.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (54.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.1999e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6085746624741972 (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.31 us (2.2%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 221.81 us (91.8%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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.2538e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6548908917777143 (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.71 us (2.5%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 208.18 us (91.4%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.2434e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6459839276453363 (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.44 us (2.3%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 219.46 us (91.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.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.2536e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6547034664011755 (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.51 us (2.4%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 210.14 us (91.4%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.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.2364e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6399894309800453 (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.64 us (2.2%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 234.28 us (92.3%)
LB move op cnt : 0
LB apply : 2.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.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.1967e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6058167432749184 (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.65 us (2.7%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 193.07 us (90.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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 | 4.0513e+05 | 65536 | 2 | 1.618e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.480923466757881 (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.35 us (2.5%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 196.39 us (90.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (54.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.5915e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9450975953522933 (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.47 us (2.2%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 229.17 us (92.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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 | 6.0096e+05 | 65536 | 2 | 1.091e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.163559446512785 (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.66 us (2.0%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 262.27 us (92.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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 | 5.0941e+05 | 65536 | 2 | 1.287e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.376881717623991 (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.34 us (2.3%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 217.50 us (91.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.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 | 5.8655e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.039735984523636 (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.78 us (2.5%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 207.70 us (91.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (57.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 | 5.8018e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.984949611876362 (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.61 us (2.6%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 199.20 us (91.1%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.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 | 5.8150e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.996292030087072 (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.92 us (2.5%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 215.12 us (91.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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 | 5.7421e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.933675026060972 (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 (2.7%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 191.44 us (90.4%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (50.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 | 5.4459e+05 | 65536 | 2 | 1.203e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.679182911557158 (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.74 us (2.3%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 232.64 us (92.1%)
LB move op cnt : 0
LB apply : 3.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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 | 5.8379e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.0159536941304275 (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.80 us (2.5%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 210.69 us (91.4%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (51.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 | 5.7636e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.952141542488493 (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.75 us (2.6%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 197.54 us (90.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (53.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 | 5.8694e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.043083094436545 (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.36 us (2.6%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 190.17 us (90.5%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 | 5.9354e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.0997596944279415 (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.29 us (2.3%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 210.09 us (91.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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 | 5.9538e+05 | 65536 | 2 | 1.101e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.1155532130452155 (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.46 us (2.7%)
patch tree reduce : 2.29 us (1.1%)
gen split merge : 982.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 185.35 us (90.4%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.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 | 5.8288e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.008185771884961 (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.39 us (2.3%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 212.93 us (91.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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 | 5.9843e+05 | 65536 | 2 | 1.095e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.141815846610681 (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.86 us (2.5%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 217.37 us (91.7%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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 | 5.3533e+05 | 65536 | 2 | 1.224e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.59958862309314 (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.86 us (2.5%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 213.99 us (91.4%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (53.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 | 5.7084e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.904698982872109 (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.69 us (2.4%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 219.34 us (91.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (52.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 | 5.1990e+05 | 65536 | 2 | 1.261e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.467064628281836 (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.35 us (2.5%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 191.34 us (90.8%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.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 | 6.1072e+05 | 65536 | 2 | 1.073e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.247369362798711 (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.72 us (2.5%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 208.02 us (91.1%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (55.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.6645e+05 | 65536 | 2 | 1.405e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.007754381226326 (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.78 us (2.6%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 204.25 us (91.1%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (51.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.8705e+05 | 65536 | 2 | 1.346e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.184824384360357 (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.60 us (0.9%)
patch tree reduce : 2.10 us (0.3%)
gen split merge : 1.16 us (0.2%)
split / merge op : 0/0
apply split merge : 1.36 us (0.2%)
LB compute : 600.78 us (96.7%)
LB move op cnt : 0
LB apply : 3.35 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 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.5412e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9018797665680895 (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.82 us (2.2%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 242.70 us (92.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.8328e+05 | 65536 | 2 | 1.356e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1524419909540065 (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.56 us (2.7%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 185.54 us (90.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (55.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 | 5.9829e+05 | 65536 | 2 | 1.095e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.140542358124813 (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 : 6.13 us (2.7%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 205.00 us (91.0%)
LB move op cnt : 0
LB apply : 3.46 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (50.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 | 5.8061e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.9886467576601685 (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.91 us (2.6%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 204.23 us (91.1%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (51.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 | 6.1242e+05 | 65536 | 2 | 1.070e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.261944428806877 (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.56 us (2.5%)
patch tree reduce : 2.37 us (1.1%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 205.54 us (91.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (49.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 | 5.9535e+05 | 65536 | 2 | 1.101e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.115340048179727 (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.41 us (2.0%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 251.35 us (92.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.6975e+05 | 65536 | 2 | 1.395e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.036122653113401 (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.36 us (2.5%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 198.41 us (91.1%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (53.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.5619e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9196038422570085 (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.39 us (2.5%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 197.25 us (91.0%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (51.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.4199e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.797657745360304 (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.55 us (2.3%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 218.82 us (91.6%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (42.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.4908e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.858534106112814 (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.64 us (2.5%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 206.58 us (91.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (53.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.5250e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.887906978830702 (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.91 us (2.7%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 201.25 us (90.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.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.5244e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.887400010489628 (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.76 us (2.5%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 209.55 us (91.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.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.3948e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.776079304848996 (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 (2.5%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 208.71 us (91.4%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (56.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.4111e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.790073523685639 (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.21 us (2.4%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 198.94 us (91.1%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.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.4608e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.832756228721938 (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.60 us (2.2%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 233.92 us (92.0%)
LB move op cnt : 0
LB apply : 3.54 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (56.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.5358e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.897188637310935 (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.53 us (2.5%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 205.23 us (91.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.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.2311e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.635434244687305 (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.66 us (2.5%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 203.12 us (91.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (51.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.4135e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7921282136340397 (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.75 us (2.2%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 241.41 us (92.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.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.5471e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9068946688008572 (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.76 us (2.4%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 222.03 us (91.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 4.3156e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.708045579205602 (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.54 us (2.2%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 229.92 us (92.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.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.3364e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7258627835479596 (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.54 us (2.2%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 231.00 us (92.0%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (54.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.2259e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.63094560559228 (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.53 us (2.6%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 193.34 us (90.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (52.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.3084e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7018122975982255 (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.53 us (2.3%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 225.46 us (91.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.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.2500e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6516589626122653 (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.57 us (2.6%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 196.04 us (90.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (52.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.3621e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7479331694368425 (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.17 us (2.5%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 191.47 us (90.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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.2811e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6783370312537653 (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.80 us (2.8%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 190.36 us (90.5%)
LB move op cnt : 0
LB apply : 2.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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 | 4.2800e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.677407443623395 (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.69 us (2.7%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 189.94 us (90.5%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (54.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.3533e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7403943221532137 (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.38 us (2.2%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 225.62 us (91.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.2920e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6877324085538867 (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.61 us (2.6%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 195.99 us (90.6%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (53.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.2669e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6661841143720117 (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 : 18.03 us (7.8%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 199.79 us (86.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (54.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.3275e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.718197803080439 (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.36 us (2.4%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 199.57 us (91.0%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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.2745e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.672713387696838 (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.62 us (2.7%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 189.65 us (90.5%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (49.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.2866e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6830739568504827 (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.57 us (2.1%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 240.41 us (92.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.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.1480e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5639826622315063 (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.59 us (2.3%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 220.95 us (91.9%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (57.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.1229e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.542429634030418 (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.92 us (2.1%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 256.40 us (92.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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.9353e+05 | 65536 | 2 | 1.665e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.381289666452402 (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.27 us (2.2%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 216.53 us (91.8%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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.7580e+05 | 65536 | 2 | 1.744e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2288822411543614 (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.79 us (2.5%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.32 us (0.6%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 208.39 us (91.2%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.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.9061e+05 | 65536 | 2 | 1.678e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.356145088744069 (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.41 us (2.4%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 206.05 us (91.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (52.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.8288e+05 | 65536 | 2 | 1.712e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.289783551692763 (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.52 us (2.4%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 208.55 us (91.5%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.0146e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4493811998139865 (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.81 us (2.5%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.29 us (0.6%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 207.03 us (90.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.2759e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6738734572391665 (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.50 us (2.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 210.24 us (91.3%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.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.3091e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7024216974356152 (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.52 us (2.1%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 243.25 us (92.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.3119e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7048215963285425 (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.10 us (2.2%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 209.57 us (91.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (52.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.2009e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.609421508896912 (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.92 us (2.6%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 210.23 us (91.2%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (52.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.2105e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6176737758583637 (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.72 us (2.5%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 211.36 us (91.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (53.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.1427e+05 | 65536 | 2 | 1.582e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5594178259438594 (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.87 us (2.4%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 219.17 us (91.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.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.9857e+05 | 65536 | 2 | 1.644e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4245773057703297 (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.60 us (2.3%)
patch tree reduce : 2.26 us (0.9%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 221.02 us (91.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.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.0041e+05 | 65536 | 2 | 1.637e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4403712010342486 (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.86 us (2.5%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 214.01 us (91.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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 | 3.9153e+05 | 65536 | 2 | 1.674e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.364057674470271 (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 : 6.03 us (1.7%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 324.10 us (93.8%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 | 3.9217e+05 | 65536 | 2 | 1.671e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3695411749221207 (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.90 us (2.5%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 214.99 us (91.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (54.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.0591e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.487623009028448 (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.71 us (2.5%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 208.73 us (91.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (50.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.0594e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.487842189061063 (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 : 6.11 us (2.7%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 205.36 us (91.0%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (51.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.0563e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4852012910010917 (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.67 us (2.1%)
patch tree reduce : 2.24 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 247.73 us (92.2%)
LB move op cnt : 0
LB apply : 3.59 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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 | 4.0593e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.487838062709042 (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 : 8.24 us (3.6%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 208.59 us (90.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.0669e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4943454404024634 (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.64 us (2.4%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 214.37 us (91.6%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.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.0572e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.48602781720082 (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.47 us (2.0%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 251.13 us (92.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.0464e+05 | 65536 | 2 | 1.620e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4767058461248856 (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.30 us (2.6%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 216.92 us (91.2%)
LB move op cnt : 0
LB apply : 3.53 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (54.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.0644e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.492192857496201 (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.57 us (2.4%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 211.91 us (91.4%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.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.0551e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.484206298806709 (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.56 us (2.4%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 213.65 us (91.4%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (40.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.0519e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.481447581737802 (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.35 us (2.4%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 202.49 us (91.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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.0492e+05 | 65536 | 2 | 1.618e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.479106847399078 (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 : 5.38 us (2.3%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 210.64 us (91.5%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (52.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.0126e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4476663707798823 (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 (2.5%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 209.12 us (91.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.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.0733e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.499829590908697 (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.44 us (2.4%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 205.18 us (91.4%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (52.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.0777e+05 | 65536 | 2 | 1.607e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.503575694966801 (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.85 us (2.5%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 216.95 us (91.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (57.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.0837e+05 | 65536 | 2 | 1.605e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5087500020783033 (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.64 us (2.3%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 222.73 us (91.7%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.0396e+05 | 65536 | 2 | 1.622e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.470869034908328 (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.34 us (2.3%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 212.82 us (91.7%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (50.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.0464e+05 | 65536 | 2 | 1.620e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.476730468058595 (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.44 us (1.9%)
patch tree reduce : 2.26 us (0.8%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 261.48 us (92.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.0571e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4859131369252574 (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.61 us (2.5%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 201.11 us (91.0%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (53.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.0572e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.485998747173551 (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.78 us (2.1%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 260.48 us (92.6%)
LB move op cnt : 0
LB apply : 3.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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.0583e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.486970103960296 (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.95 us (2.4%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 225.66 us (91.7%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.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.0617e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.489837224105319 (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.75 us (2.5%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 209.69 us (91.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (54.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.0783e+05 | 65536 | 2 | 1.607e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5040887078747214 (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.30 us (2.3%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 209.93 us (91.4%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (52.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.0720e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4987320536796136 (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.55 us (2.3%)
patch tree reduce : 2.28 us (0.9%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 220.38 us (91.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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.0657e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4933164405406743 (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 : 6.03 us (2.7%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 202.84 us (91.0%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (52.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.0576e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4863683632454494 (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.15 us (2.5%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 225.79 us (91.5%)
LB move op cnt : 0
LB apply : 3.88 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.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.0859e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5106533988017685 (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.39 us (2.3%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 212.75 us (91.5%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
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 | 4.0675e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.494872043552827 (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.67 us (2.3%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 228.81 us (91.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.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.0827e+05 | 65536 | 2 | 1.605e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5079400060500485 (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.79 us (2.5%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 209.74 us (91.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (52.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.7130e+05 | 65536 | 2 | 1.765e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1902865304926578 (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.59 us (2.3%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 219.34 us (91.7%)
LB move op cnt : 0
LB apply : 3.60 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.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.2430e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.645614461120377 (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.27 us (2.3%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 212.81 us (91.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.3606e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.746712353633698 (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.61 us (2.3%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 221.25 us (92.0%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (57.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.3598e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7459938124091288 (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.59 us (2.2%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 230.91 us (92.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.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.3847e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7673820527654107 (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.60 us (2.3%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 221.51 us (91.8%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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.2960e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6911928716764284 (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.80 us (2.5%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 209.12 us (91.2%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (52.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.1179e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5381770351390784 (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.52 us (2.4%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 209.39 us (91.3%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (52.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.3232e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7145638008687145 (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.27 us (2.0%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 242.51 us (92.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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.3508e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.738286988538837 (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.85 us (2.4%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 225.30 us (92.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.3119e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7048749064165962 (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.48 us (2.5%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 198.20 us (90.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (54.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.3541e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.741121280213304 (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.38 us (2.1%)
patch tree reduce : 2.13 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 234.11 us (92.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (57.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.2287e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.633317169860548 (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.46 us (2.2%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 226.68 us (92.2%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.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.0009e+05 | 65536 | 2 | 1.638e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4376317182628435 (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.65 us (2.6%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 196.11 us (90.9%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.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.0250e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4583386204675106 (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.72 us (2.6%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 202.41 us (91.2%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.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.0072e+05 | 65536 | 2 | 1.635e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.443070947161243 (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 (2.5%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 202.62 us (91.4%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (54.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.0362e+05 | 65536 | 2 | 1.624e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4679917189126805 (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.55 us (2.4%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 206.97 us (91.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.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.0926e+05 | 65536 | 2 | 1.601e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.516376592520287 (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.33 us (1.8%)
patch tree reduce : 2.19 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 272.49 us (93.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (52.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.1191e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5391618985879245 (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.67 us (2.2%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 241.39 us (92.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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 | 3.9637e+05 | 65536 | 2 | 1.653e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4056756631491516 (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.85 us (2.4%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 221.07 us (91.7%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 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.0331e+05 | 65536 | 2 | 1.625e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4653079556977926 (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.38 us (2.4%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 205.23 us (91.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (54.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.0312e+05 | 65536 | 2 | 1.626e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.463690005000676 (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.84 us (2.6%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 204.08 us (91.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.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.0114e+05 | 65536 | 2 | 1.634e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.446663493635019 (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.94 us (2.7%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 204.05 us (91.2%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.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.1824e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.593591978814916 (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.51 us (2.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 209.92 us (91.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (36.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 | 5.8643e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.038671119080502 (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.26 us (2.4%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 203.36 us (91.0%)
LB move op cnt : 0
LB apply : 3.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (54.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.7282e+05 | 65536 | 2 | 1.386e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.062532228289675 (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.01 us (2.1%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 271.87 us (93.0%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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.3028e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.697037396767499 (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.60 us (2.1%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 242.65 us (92.3%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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.2101e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6173314728315975 (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.58 us (2.4%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 212.38 us (91.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (52.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.2414e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.644251868850813 (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 (2.4%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 208.54 us (91.4%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.2948e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6901444915355426 (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.55 us (2.4%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 213.61 us (91.5%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.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.1670e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5802933141694786 (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.58 us (2.5%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 205.21 us (91.2%)
LB move op cnt : 0
LB apply : 2.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (55.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.0400e+05 | 65536 | 2 | 1.622e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4712090007816663 (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.81 us (2.2%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 237.88 us (92.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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 | 4.1930e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.602667157915601 (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 (2.1%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 242.37 us (92.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (54.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.2389e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6421110870559406 (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.71 us (2.6%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 203.77 us (91.2%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (51.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.2288e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6334028820961963 (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.44 us (2.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 210.42 us (91.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (53.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.0964e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.519712764002578 (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.46 us (2.2%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 227.25 us (91.9%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.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.2794e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6769094882923605 (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.69 us (2.1%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 245.39 us (92.5%)
LB move op cnt : 0
LB apply : 3.44 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.2506e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6521989457581676 (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.47 us (2.4%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 205.90 us (91.2%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (53.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.2916e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.687380076329969 (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.50 us (2.4%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 210.86 us (91.4%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (52.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.2196e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.625561700012366 (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.45 us (2.5%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 202.02 us (91.0%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (58.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.2653e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.664780703291977 (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.67 us (2.4%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 214.65 us (91.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (53.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.3003e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6948429927897086 (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.41 us (2.4%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 204.83 us (91.4%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.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.2732e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6715708323767835 (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.87 us (2.5%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 211.15 us (91.2%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (56.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.2268e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.631678303051735 (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.60 us (2.2%)
patch tree reduce : 2.45 us (1.0%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 232.52 us (91.9%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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.2606e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.660783715354943 (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.64 us (2.4%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 218.72 us (91.6%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.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.2098e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6171361690504167 (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.62 us (2.4%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 211.36 us (91.7%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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.3000e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6945773900512013 (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.85 us (2.2%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 249.94 us (92.5%)
LB move op cnt : 0
LB apply : 3.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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.2170e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6233357482402226 (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.64 us (2.4%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 218.83 us (91.7%)
LB move op cnt : 0
LB apply : 3.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.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.2922e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.687922560691962 (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.71 us (2.4%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 222.55 us (91.8%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (53.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.7307e+05 | 65536 | 2 | 1.757e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2054587163336206 (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.61 us (2.4%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 212.91 us (91.6%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.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.2808e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6780808114518155 (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.46 us (2.2%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 229.90 us (92.2%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (49.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.1413e+05 | 65536 | 2 | 1.582e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5582645250213214 (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.39 us (2.4%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 208.60 us (91.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.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 | 5.6552e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.859036171465573 (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.45 us (2.7%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 184.96 us (90.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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 | 5.7868e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.972082696545036 (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.84 us (2.4%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 220.74 us (90.6%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.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 | 5.7342e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.926926330817497 (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.64 us (2.7%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 192.42 us (90.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (58.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 | 6.0103e+05 | 65536 | 2 | 1.090e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.164107294446273 (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.03 us (2.9%)
patch tree reduce : 2.29 us (1.1%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 187.72 us (90.1%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (54.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 | 5.6580e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7143898428371696 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 313.443623204 (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 1.61 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.13 us (52.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.24 us (0.5%)
patch tree reduce : 1.39 us (0.6%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.3%)
LB compute : 226.15 us (95.7%)
LB move op cnt : 0
LB apply : 2.56 us (1.1%)
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.18 us (3.8%)
patch tree reduce : 2.22 us (0.9%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 217.72 us (90.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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 | 5.1871e+05 | 65536 | 2 | 1.263e-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.35 us (2.7%)
patch tree reduce : 1.81 us (0.9%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 178.79 us (90.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (50.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.5889e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.942866582642402 (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.34 us (2.4%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 205.42 us (91.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.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 | 5.0274e+05 | 65536 | 2 | 1.304e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.319615340206891 (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.59 us (2.2%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 231.86 us (92.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (52.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.6313e+05 | 65536 | 2 | 1.415e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9793019896316646 (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.38 us (2.1%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 232.74 us (92.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.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 | 5.7430e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.934418522652231 (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.56 us (2.4%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 208.28 us (91.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (54.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 | 5.6480e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.852803635796803 (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 (2.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 188.47 us (90.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 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 | 5.7865e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.971847035186223 (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.83 us (2.7%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 981.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 195.60 us (90.7%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.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 | 5.6725e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.873895640295498 (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.64 us (2.3%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 226.16 us (91.9%)
LB move op cnt : 0
LB apply : 3.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (54.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 | 5.5538e+05 | 65536 | 2 | 1.180e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.771901865408688 (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.59 us (2.5%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 205.15 us (91.4%)
LB move op cnt : 0
LB apply : 2.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (45.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 | 5.6152e+05 | 65536 | 2 | 1.167e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.824615162942173 (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.71 us (2.8%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 184.46 us (90.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (52.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 | 5.7968e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.980661808364682 (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.26 us (2.4%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 202.51 us (91.1%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (51.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 | 5.9982e+05 | 65536 | 2 | 1.093e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.153685900614082 (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.74 us (2.1%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 248.85 us (92.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (50.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 | 5.0486e+05 | 65536 | 2 | 1.298e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.337812576378952 (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.77 us (2.5%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 208.03 us (91.0%)
LB move op cnt : 0
LB apply : 3.53 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.6850e+05 | 65536 | 2 | 1.399e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.025443210283649 (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.47 us (2.6%)
patch tree reduce : 1.68 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 187.58 us (90.9%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (52.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 | 5.9349e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.0993201712007945 (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.83 us (2.7%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 195.61 us (90.7%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 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 | 5.8346e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.013194795325403 (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.73 us (2.8%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 186.80 us (90.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.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 | 5.7138e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.909330282557255 (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 : 8.74 us (3.8%)
patch tree reduce : 2.85 us (1.2%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 204.94 us (89.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (47.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 | 5.5483e+05 | 65536 | 2 | 1.181e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.767160795365409 (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.31 us (2.2%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 217.67 us (91.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.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 | 5.8222e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.002502735383651 (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.81 us (2.8%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 190.81 us (90.5%)
LB move op cnt : 0
LB apply : 3.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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 | 5.7776e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.964218082840484 (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.27 us (2.1%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 235.37 us (92.5%)
LB move op cnt : 0
LB apply : 3.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (52.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 | 5.7815e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.96757336243907 (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.39 us (2.6%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 187.25 us (90.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.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 | 5.6914e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.890096741301152 (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.60 us (2.7%)
patch tree reduce : 1.78 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 188.07 us (90.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (53.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 | 5.7263e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.920108672650785 (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.00 us (2.4%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 189.61 us (90.7%)
LB move op cnt : 0
LB apply : 3.42 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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 | 5.6671e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.869207005087206 (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.44 us (2.6%)
patch tree reduce : 1.79 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 186.60 us (90.8%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (46.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 | 5.7851e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.9706096968149875 (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.63 us (2.7%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 188.94 us (90.8%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.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 | 5.6412e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.847012431245301 (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.78 us (2.8%)
patch tree reduce : 1.76 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 186.15 us (90.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (71.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 | 5.8154e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.996677524857943 (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.26 us (2.6%)
patch tree reduce : 2.22 us (1.1%)
gen split merge : 941.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 186.11 us (90.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (53.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 | 5.8606e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.035525061933479 (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.72 us (2.1%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 250.80 us (92.8%)
LB move op cnt : 0
LB apply : 3.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.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 | 5.8457e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.022724861294762 (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.23 us (1.8%)
patch tree reduce : 1.89 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 : 267.98 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.24 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 | 5.9047e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.073384126696924 (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.61 us (2.0%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 261.24 us (92.8%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.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.4087e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.788001386616675 (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.70 us (2.2%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 244.30 us (92.5%)
LB move op cnt : 0
LB apply : 3.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.3502e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7377829304917456 (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.44 us (1.8%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 279.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.31 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.3960e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.777089906977756 (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.29 us (2.1%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 235.58 us (92.3%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (53.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 | 5.2109e+05 | 65536 | 2 | 1.258e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.477255116471566 (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.48 us (2.6%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 194.75 us (91.0%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.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 | 5.6455e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.85064837455497 (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 : 6.01 us (2.9%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 961.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 188.95 us (90.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (51.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 | 5.6672e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.869331850352767 (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.7%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 198.09 us (91.0%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.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 | 5.9043e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.073020617733617 (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.48 us (2.2%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.48 us (0.6%)
LB compute : 224.12 us (91.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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 | 5.4052e+05 | 65536 | 2 | 1.212e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.644184593561769 (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.51 us (2.6%)
patch tree reduce : 1.84 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 191.78 us (90.6%)
LB move op cnt : 0
LB apply : 3.42 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (52.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 | 5.7759e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.962680107767983 (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.84 us (2.4%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 218.57 us (91.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.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 | 5.5431e+05 | 65536 | 2 | 1.182e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.762660227693385 (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 : 6.20 us (2.7%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 213.13 us (91.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.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 | 5.4620e+05 | 65536 | 2 | 1.200e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.692991156108519 (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.47 us (2.5%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 198.20 us (91.1%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 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 | 5.6785e+05 | 65536 | 2 | 1.154e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.879006473578965 (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.66 us (2.7%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 189.03 us (90.6%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (53.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 | 5.6801e+05 | 65536 | 2 | 1.154e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.88037736854515 (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.68 us (2.4%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 212.72 us (91.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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 | 5.7741e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.961217525036911 (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.99 us (2.9%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.12 us (0.6%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 183.47 us (90.2%)
LB move op cnt : 0
LB apply : 3.17 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (53.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 | 5.6242e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.832373953471965 (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 (2.7%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 184.08 us (90.4%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (48.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 | 5.3701e+05 | 65536 | 2 | 1.220e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.614022772155986 (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.54 us (2.2%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 232.84 us (92.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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.6473e+05 | 65536 | 2 | 1.410e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.993046791924194 (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.57 us (2.3%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 224.27 us (91.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.7396e+05 | 65536 | 2 | 1.383e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.072314407240336 (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.52 us (0.7%)
patch tree reduce : 1.83 us (0.2%)
gen split merge : 1.04 us (0.1%)
split / merge op : 0/0
apply split merge : 1.12 us (0.1%)
LB compute : 758.85 us (97.5%)
LB move op cnt : 0
LB apply : 3.20 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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 | 5.7619e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.950660397761457 (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.61 us (2.4%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 213.35 us (91.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (51.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 | 5.8032e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.9861804575615425 (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.72 us (2.8%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 184.58 us (90.2%)
LB move op cnt : 0
LB apply : 3.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (53.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 | 5.8230e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.003212754030153 (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.26 us (2.3%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 213.33 us (91.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (53.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 | 5.6490e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.85370268341601 (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.63 us (2.7%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 185.77 us (90.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (56.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 | 5.7665e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.954617260793304 (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.47 us (2.3%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 214.23 us (91.5%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.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 | 5.6870e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.886297046409856 (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.75 us (2.8%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 932.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 186.26 us (90.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.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 | 5.8479e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.024602099361923 (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.67 us (2.3%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 229.79 us (91.9%)
LB move op cnt : 0
LB apply : 3.55 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (53.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 | 5.5098e+05 | 65536 | 2 | 1.189e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.73408569146836 (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.48 us (2.4%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 205.87 us (91.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (52.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.3085e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.701890612387488 (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.52 us (2.3%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 222.50 us (91.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.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.2710e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6696983415852356 (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.61 us (2.4%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 212.10 us (91.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (52.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.2830e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.680023604793344 (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.42 us (2.2%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 214.34 us (87.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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.2395e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6426455164776788 (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.71 us (2.2%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 243.62 us (92.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.2496e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.65128645099384 (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.86 us (2.7%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 198.82 us (90.8%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (50.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.2568e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.657484557679569 (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.56 us (2.4%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 215.86 us (91.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (51.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.2281e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6328098249964387 (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.06 us (2.7%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 205.42 us (91.0%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (52.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.2089e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6163593685634403 (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.37 us (2.3%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 210.06 us (91.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.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 | 5.2295e+05 | 65536 | 2 | 1.253e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.493277541623841 (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.45 us (2.1%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 234.38 us (92.2%)
LB move op cnt : 0
LB apply : 3.51 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (49.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 | 5.5598e+05 | 65536 | 2 | 1.179e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.777086259739001 (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.86 us (2.4%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 219.20 us (91.5%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.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 | 5.4697e+05 | 65536 | 2 | 1.198e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.699654360544398 (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.66 us (2.7%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 187.65 us (90.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (52.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 | 5.0634e+05 | 65536 | 2 | 1.294e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.350522290479342 (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.30 us (2.5%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 196.42 us (90.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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.2909e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6868121155965774 (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.41 us (2.4%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 195.19 us (86.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.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.9400e+05 | 65536 | 2 | 1.663e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.385324236740345 (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 (2.5%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 205.23 us (91.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (52.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.9765e+05 | 65536 | 2 | 1.648e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.416680980036628 (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.54 us (2.2%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 230.81 us (92.0%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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.0471e+05 | 65536 | 2 | 1.619e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.477328628433849 (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.75 us (2.6%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 205.56 us (91.3%)
LB move op cnt : 0
LB apply : 3.55 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (56.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.0736e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.500092165935105 (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.52 us (2.5%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 204.52 us (91.3%)
LB move op cnt : 0
LB apply : 2.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (53.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.0055e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.441608035273199 (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.33 us (2.0%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 244.99 us (92.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.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.0687e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4958502622160643 (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.47 us (2.0%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 258.94 us (92.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 3.8843e+05 | 65536 | 2 | 1.687e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.337432106409132 (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.45 us (2.2%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 228.45 us (92.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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 | 3.6905e+05 | 65536 | 2 | 1.776e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.170922657511064 (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.57 us (2.4%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 215.41 us (91.7%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (40.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.0115e+05 | 65536 | 2 | 1.634e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4466869112934106 (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.47 us (2.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 212.05 us (91.4%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.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.0683e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4955559904856353 (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.62 us (2.4%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 215.80 us (91.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (54.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.9975e+05 | 65536 | 2 | 1.639e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.43473006807376 (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.59 us (2.1%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 246.32 us (92.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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.0796e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.50522572040274 (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.32 us (2.4%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 198.57 us (91.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.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.0271e+05 | 65536 | 2 | 1.627e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.460118706015294 (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.45 us (2.3%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 216.57 us (91.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (48.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.0354e+05 | 65536 | 2 | 1.624e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.467290396636451 (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.77 us (2.6%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 201.71 us (91.2%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (53.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.0389e+05 | 65536 | 2 | 1.623e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4702438803929923 (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.72 us (2.6%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 196.49 us (90.3%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.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.0377e+05 | 65536 | 2 | 1.623e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4692391982172626 (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.18 us (2.2%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 218.48 us (91.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (55.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.9926e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4304922206595743 (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.30 us (2.3%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 210.02 us (91.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (52.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.0266e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.459732038065574 (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.48 us (2.4%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 206.49 us (91.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (52.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.0939e+05 | 65536 | 2 | 1.601e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.517497622121569 (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.13 us (1.8%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 263.42 us (93.1%)
LB move op cnt : 0
LB apply : 3.59 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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.0594e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.487899786177128 (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.41 us (2.1%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 233.84 us (92.2%)
LB move op cnt : 0
LB apply : 3.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 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.2559e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.656677936816441 (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.64 us (2.1%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 244.97 us (92.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.1540e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.569138543465487 (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.57 us (2.2%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 235.40 us (92.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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.1680e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.581163468699559 (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.77 us (2.1%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 255.10 us (92.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (51.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.1185e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.538630381835765 (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.47 us (2.3%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.6%)
LB compute : 221.65 us (91.7%)
LB move op cnt : 0
LB apply : 2.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (54.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.9848e+05 | 65536 | 2 | 1.645e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4238259578972587 (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.35 us (2.2%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 222.92 us (92.0%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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.0386e+05 | 65536 | 2 | 1.623e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.470048012474376 (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.24 us (2.2%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 219.41 us (91.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.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.2750e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6731630756870675 (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.33 us (2.6%)
patch tree reduce : 1.86 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 188.55 us (90.6%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.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.3719e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.756351627851814 (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.52 us (2.5%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 203.73 us (91.3%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (54.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 | 5.8947e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.064797399436609 (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.31 us (2.0%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 240.19 us (92.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 5.6509e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.855306427557612 (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.51 us (2.3%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 215.15 us (91.8%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.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 | 5.7612e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.9500921475683395 (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.79 us (2.7%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 195.39 us (90.6%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (49.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 | 5.8480e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.024657471955148 (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.55 us (2.4%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 207.41 us (91.3%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (49.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 | 5.7457e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.936805130712311 (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.49 us (2.0%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 249.20 us (92.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 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 | 5.8688e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.042538134724859 (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.96 us (2.8%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 190.91 us (90.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (53.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 | 5.9487e+05 | 65536 | 2 | 1.102e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.111220725988921 (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.42 us (2.5%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 193.70 us (91.1%)
LB move op cnt : 0
LB apply : 2.93 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (51.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 | 5.9233e+05 | 65536 | 2 | 1.106e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.089383614360467 (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.50 us (2.2%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 232.54 us (91.9%)
LB move op cnt : 0
LB apply : 3.56 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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 | 5.6999e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.897419838961995 (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.56 us (2.7%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 190.73 us (90.9%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (53.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 | 5.8015e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.98470809598021 (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.52 us (2.6%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 195.40 us (90.9%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (71.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 | 5.8470e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.0238335551710005 (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.50 us (2.6%)
patch tree reduce : 1.78 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 190.18 us (90.8%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (53.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 | 5.8970e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.066783272887951 (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 : 16.30 us (7.1%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 198.77 us (86.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.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 | 5.8583e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.03350201248257 (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.66 us (2.8%)
patch tree reduce : 1.74 us (0.9%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 181.92 us (90.4%)
LB move op cnt : 0
LB apply : 3.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.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 | 5.8988e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.068337099193305 (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.66 us (2.7%)
patch tree reduce : 1.84 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 190.06 us (90.6%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.4462e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.820269777776664 (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.58 us (2.7%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 951.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 184.10 us (90.3%)
LB move op cnt : 0
LB apply : 3.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (52.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 | 5.8085e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.990712283843122 (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.71 us (2.7%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 189.98 us (90.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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.4911e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8588117215657434 (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.39 us (2.7%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 182.52 us (90.4%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.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 | 5.6458e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.8509000162700655 (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.21 us (2.5%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 186.80 us (90.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.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 | 5.6869e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.886219877204624 (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.36 us (2.2%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 218.77 us (91.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.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 | 5.8246e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.004525312195458 (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.67 us (2.6%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 200.67 us (90.9%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.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 | 5.7410e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.932742048916188 (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.16 us (2.6%)
patch tree reduce : 1.67 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.6%)
LB compute : 182.30 us (90.6%)
LB move op cnt : 0
LB apply : 3.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.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 | 5.8065e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.988997170023352 (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.46 us (2.6%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 188.71 us (90.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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 | 5.7059e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.902536529945389 (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.69 us (2.7%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 189.50 us (90.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (54.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 | 5.7212e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.915698398845857 (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.37 us (2.6%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 189.61 us (90.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.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 | 5.8154e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.99662019564834 (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.25 us (2.5%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 192.48 us (91.0%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (53.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 | 5.8366e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.01485383451863 (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.25 us (2.3%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 212.41 us (91.7%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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 | 5.7892e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.974174028030756 (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.73 us (2.8%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 186.37 us (90.4%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (52.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 | 5.8189e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.99967506253871 (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.8%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 193.49 us (90.7%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.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 | 5.8530e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.028965655800671 (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.58 us (2.6%)
patch tree reduce : 1.66 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 192.19 us (90.9%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (52.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 | 5.8903e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.061002438092214 (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.26 us (2.4%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 184.65 us (85.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (52.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 | 5.5329e+05 | 65536 | 2 | 1.184e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.7539741810129055 (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.53 us (2.6%)
patch tree reduce : 2.25 us (1.1%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 189.04 us (90.4%)
LB move op cnt : 0
LB apply : 2.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.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 | 5.8099e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.991934382567504 (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.92 us (2.8%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 191.57 us (90.6%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (51.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 | 5.7955e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.97958036412497 (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.34 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 283.97 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.60 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 | 5.9067e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.075100173487726 (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.95 us (2.8%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 191.23 us (90.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.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.7423e+05 | 65536 | 2 | 1.382e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0746832156471555 (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 : 6.24 us (2.6%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 223.22 us (91.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (53.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 | 5.8498e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.026178834828916 (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.60 us (2.3%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 221.15 us (91.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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 | 5.8057e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.988339833692439 (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.22 us (2.5%)
patch tree reduce : 1.78 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 188.85 us (90.9%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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 | 5.0315e+05 | 65536 | 2 | 1.303e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.3230949481768635 (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.73 us (2.7%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 193.56 us (90.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (53.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 | 5.8465e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.023408052103265 (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.39 us (2.2%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 227.00 us (92.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.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 | 5.7144e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.909920165268231 (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.57 us (2.6%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 196.31 us (91.0%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.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 | 5.5488e+05 | 65536 | 2 | 1.181e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.767622949622226 (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.86 us (2.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 201.35 us (90.9%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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 | 5.6528e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.856995898820576 (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.48 us (2.2%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 230.43 us (92.1%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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 | 5.6747e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.875801564241603 (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 (2.3%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 219.29 us (91.8%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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 | 5.8265e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.006211018955344 (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.58 us (2.7%)
patch tree reduce : 1.66 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 184.38 us (90.6%)
LB move op cnt : 0
LB apply : 3.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (54.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 | 5.8055e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.988165948968211 (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.66 us (2.7%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 971.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 193.14 us (90.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (53.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 | 5.9010e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.070238732378321 (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.75 us (2.6%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 202.00 us (90.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 5.7592e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.948405704255532 (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.42 us (2.0%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 253.91 us (92.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (51.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 | 5.7426e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.934125974083626 (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.71 us (2.8%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 932.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 187.31 us (90.6%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.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 | 5.7500e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.9404364264287475 (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.82 us (2.8%)
patch tree reduce : 1.78 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 187.55 us (89.6%)
LB move op cnt : 0
LB apply : 3.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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 | 5.7126e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.908360580349381 (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.38 us (2.4%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 201.79 us (91.5%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (48.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 | 5.9218e+05 | 65536 | 2 | 1.107e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.088058309037263 (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.84 us (2.8%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 190.41 us (90.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (52.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 | 5.8373e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.015502765267453 (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.63 us (2.7%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 190.32 us (90.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.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 | 5.7801e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.966309810430365 (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.85 us (2.7%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 193.71 us (90.6%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.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.5940e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.947255842555128 (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.79 us (1.1%)
patch tree reduce : 1.95 us (0.4%)
gen split merge : 1.11 us (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.2%)
LB compute : 521.08 us (96.2%)
LB move op cnt : 0
LB apply : 3.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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.5908e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9444586384881877 (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 : 5.32 us (2.4%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 203.32 us (91.5%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (51.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.2150e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.621576128063371 (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.51 us (2.5%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 201.12 us (91.2%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (54.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.1764e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5884537788710045 (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.72 us (2.4%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 217.12 us (91.7%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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.3200e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.71176731605412 (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 : 6.00 us (2.6%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 206.50 us (91.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (56.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.2163e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.622726534365032 (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.71 us (2.1%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 256.99 us (92.8%)
LB move op cnt : 0
LB apply : 3.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 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.1372e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.554720078831733 (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.33 us (2.5%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 195.77 us (91.0%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.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.2003e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.608986805977038 (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.35 us (2.0%)
patch tree reduce : 1.93 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 : 253.64 us (92.9%)
LB move op cnt : 0
LB apply : 3.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.2073e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6149450778506074 (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.20 us (2.2%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 221.73 us (91.9%)
LB move op cnt : 0
LB apply : 3.63 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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.3723e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7567633563958327 (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.89 us (2.5%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 218.75 us (91.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.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.3414e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7301510361343317 (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.24 us (2.2%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 213.83 us (91.8%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (52.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.3920e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.773666119997997 (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.60 us (2.4%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 209.77 us (91.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.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.3584e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7447673112544195 (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.45 us (2.4%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 204.42 us (91.3%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (53.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.3437e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7321774167083395 (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.55 us (2.4%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 209.19 us (91.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.3566e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7432310400229363 (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.79 us (2.6%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 203.64 us (91.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (51.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.1742e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.586497111357146 (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.44 us (2.3%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 216.63 us (91.8%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 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.2798e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6772883754392214 (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.07 us (1.2%)
patch tree reduce : 1.97 us (0.4%)
gen split merge : 5.47 us (1.1%)
split / merge op : 0/0
apply split merge : 1.10 us (0.2%)
LB compute : 460.69 us (94.7%)
LB move op cnt : 0
LB apply : 3.74 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 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.3480e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7358436014623733 (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.17 us (2.3%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 206.32 us (91.4%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (58.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.1970e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.606070037106288 (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.30 us (2.3%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 210.80 us (91.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (53.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.2931e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6886647353031847 (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 : 6.28 us (2.8%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 201.62 us (90.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.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.2430e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6456080884089928 (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.35 us (2.5%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 196.38 us (91.2%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (55.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.3354e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.72498873649184 (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 (2.1%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 241.13 us (92.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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 | 4.2591e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6594490499440457 (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.43 us (2.1%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 234.79 us (91.9%)
LB move op cnt : 0
LB apply : 3.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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.3057e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6995479079657634 (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.83 us (2.5%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 208.46 us (91.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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 | 4.3502e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.737765637159317 (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.69 us (2.6%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 199.67 us (91.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.3216e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.71315278924467 (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.54 us (2.5%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 204.01 us (91.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (54.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.2515e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.652954726033789 (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.60 us (2.0%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 261.86 us (92.8%)
LB move op cnt : 0
LB apply : 3.83 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (54.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.3328e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7228145678890883 (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.54 us (2.2%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 233.69 us (92.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.1329e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.551017682688412 (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.38 us (2.3%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 213.30 us (91.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (54.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.1721e+05 | 65536 | 2 | 1.571e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5846838286290117 (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.55 us (2.5%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 206.42 us (91.4%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (52.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.1852e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.595977261338854 (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.45 us (2.4%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 211.20 us (91.6%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (53.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.2893e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.685456694495322 (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 : 6.02 us (2.3%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 240.77 us (92.2%)
LB move op cnt : 0
LB apply : 3.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.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.2802e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.67758963911441 (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.63 us (2.5%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 202.91 us (91.2%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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 | 5.0338e+05 | 65536 | 2 | 1.302e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.325119200778824 (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.82 us (2.2%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 239.72 us (92.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (58.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 | 5.9795e+05 | 65536 | 2 | 1.096e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.13769415057886 (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.62 us (2.5%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 207.69 us (91.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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 | 5.8012e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.984453499226674 (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.86 us (2.5%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.34 us (0.6%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 217.59 us (91.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (54.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 | 5.7918e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.9764052556273075 (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.62 us (2.8%)
patch tree reduce : 1.68 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 183.38 us (90.4%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.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 | 5.7738e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.960954570229462 (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.58 us (2.7%)
patch tree reduce : 2.33 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 188.24 us (90.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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 | 5.7217e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.916165509772257 (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.59 us (2.7%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 189.37 us (90.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.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 | 5.7049e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.901694099682274 (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.43 us (2.5%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 194.78 us (90.8%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (56.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 | 5.6713e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.872843949990454 (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.54 us (2.2%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 236.68 us (92.3%)
LB move op cnt : 0
LB apply : 3.54 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.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 | 5.7372e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.92944524961866 (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.58 us (2.4%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 216.22 us (91.8%)
LB move op cnt : 0
LB apply : 3.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.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 | 5.6360e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.842554004367841 (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.68 us (2.7%)
patch tree reduce : 1.83 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 191.76 us (90.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.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 | 5.6657e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.86804063229583 (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.99 us (2.8%)
patch tree reduce : 1.86 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.7%)
LB compute : 191.29 us (90.5%)
LB move op cnt : 0
LB apply : 3.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (51.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 | 5.8309e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.0099674621380625 (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.59 us (2.6%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 193.54 us (90.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (51.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 | 5.8182e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.999038919373329 (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.40 us (2.6%)
patch tree reduce : 1.82 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 188.49 us (90.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (52.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 | 5.7158e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.911090290349374 (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.43 us (2.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 188.42 us (90.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.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 | 5.8368e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.015043922390286 (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.60 us (2.7%)
patch tree reduce : 1.86 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 188.73 us (90.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (54.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 | 5.5273e+05 | 65536 | 2 | 1.186e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.749115799420807 (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.42 us (2.4%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 204.52 us (91.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (57.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 | 5.6252e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.833215663948858 (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.62 us (2.3%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 227.64 us (92.0%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (51.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.0576e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4863188895031367 (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.30 us (2.3%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 210.50 us (91.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (52.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.2733e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.671674279899058 (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.12 us (2.2%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 216.93 us (91.9%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (50.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.2167e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6230720039298703 (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.44 us (2.2%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 222.16 us (91.8%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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 | 5.8449e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.022003158085922 (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.66 us (2.7%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 189.51 us (90.7%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.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 | 5.8343e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.012921392980194 (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.65 us (2.3%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 225.11 us (92.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (56.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 | 5.9072e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.075514806983519 (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.59 us (2.4%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 209.59 us (91.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (57.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 | 5.8577e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.033003161955367 (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.61 us (2.2%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 239.30 us (91.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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 | 5.8528e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.02880500526639 (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.36 us (2.4%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 199.99 us (91.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.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 | 5.8104e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.992362935744078 (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.67 us (2.6%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.38 us (0.6%)
LB compute : 196.12 us (90.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.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 | 5.8634e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.037938651232731 (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.83 us (2.7%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 196.75 us (90.7%)
LB move op cnt : 0
LB apply : 3.56 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.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 | 5.8578e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.033050037458124 (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.56 us (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 199.67 us (90.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (55.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 | 5.8386e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.0165849430666025 (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.55 us (2.4%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 212.88 us (91.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (55.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 | 5.8584e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.03357994431235 (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.53 us (2.4%)
patch tree reduce : 13.17 us (5.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.6%)
LB compute : 197.87 us (86.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.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 | 5.7976e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.981335762764785 (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.48 us (2.2%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 229.45 us (91.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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 | 5.8510e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.027276666390061 (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.66 us (2.7%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.42 us (0.7%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 192.58 us (90.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (57.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 | 5.8611e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.035904024309926 (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.69 us (2.7%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 194.44 us (91.0%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (56.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 | 5.8049e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.987667649689087 (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.56 us (2.4%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 199.26 us (86.2%)
LB move op cnt : 0
LB apply : 15.50 us (6.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.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 | 5.8122e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.993945099076932 (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.96 us (2.5%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 215.85 us (91.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (55.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 | 5.8514e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.0275913184218695 (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.39 us (2.5%)
patch tree reduce : 1.84 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 193.64 us (90.9%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.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 | 5.8421e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.019619755209222 (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.59 us (2.6%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 197.51 us (90.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.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 | 5.8803e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.052396064220994 (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.73 us (2.3%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 227.45 us (92.0%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (52.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 | 5.1053e+05 | 65536 | 2 | 1.284e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.3865104007956255 (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.37 us (2.2%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 221.72 us (91.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 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 | 5.7746e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.961567897933227 (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.70 us (2.4%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 219.35 us (91.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (51.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 | 5.8053e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.98799375538291 (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.59 us (2.0%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 257.96 us (92.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.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.0232e+05 | 65536 | 2 | 1.629e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6411344381928257 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 342.89247618900004 (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.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 : 18.34 us (84.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.16 us (0.4%)
patch tree reduce : 1.33 us (0.5%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.3%)
LB compute : 248.14 us (96.0%)
LB move op cnt : 0
LB apply : 3.15 us (1.2%)
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.35 us (2.9%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.3%)
LB compute : 269.96 us (92.5%)
LB move op cnt : 0
LB apply : 2.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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.3985e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.5% 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.69 us (2.2%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 240.38 us (92.2%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.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 | 5.8036e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.98654068005494 (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.57 us (2.2%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 228.15 us (91.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.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 | 5.0055e+05 | 65536 | 2 | 1.309e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.30075046231364 (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.45 us (2.1%)
patch tree reduce : 2.18 us (0.8%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 238.69 us (92.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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 | 5.7729e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.960127991458147 (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.43 us (2.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 207.88 us (91.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.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 | 5.8513e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.027531527016203 (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.95 us (2.6%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 203.93 us (90.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (56.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.0640e+05 | 65536 | 2 | 1.613e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.491841082117516 (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.34 us (2.1%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 236.53 us (92.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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.1315e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.549835152944103 (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.59 us (2.5%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 206.30 us (91.2%)
LB move op cnt : 0
LB apply : 3.40 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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 | 4.3341e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.723900091171731 (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.31 us (2.6%)
patch tree reduce : 2.26 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 188.53 us (90.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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 | 5.7407e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.9324963621281634 (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.97 us (2.8%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 192.02 us (90.1%)
LB move op cnt : 0
LB apply : 3.61 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.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 | 5.7683e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.9561767205552325 (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.60 us (2.5%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 202.93 us (90.9%)
LB move op cnt : 0
LB apply : 3.49 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.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 | 5.6104e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.820491793331803 (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.34 us (2.4%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 203.21 us (91.1%)
LB move op cnt : 0
LB apply : 3.51 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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 | 5.7315e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.924600212092125 (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.67 us (2.6%)
patch tree reduce : 1.86 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 194.74 us (90.9%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.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 | 5.4908e+05 | 65536 | 2 | 1.194e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.717770761460933 (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.34 us (2.6%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 185.57 us (90.3%)
LB move op cnt : 0
LB apply : 3.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.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.5695e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.926132979885239 (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.85 us (2.7%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 197.16 us (90.7%)
LB move op cnt : 0
LB apply : 3.45 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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 | 5.4261e+05 | 65536 | 2 | 1.208e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.662192107749197 (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.51 us (2.5%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 203.60 us (91.1%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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.5189e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8827261572041096 (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.12 us (2.2%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 215.07 us (91.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.7686e+05 | 65536 | 2 | 1.374e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.09726635736596 (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.19 us (1.9%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 256.25 us (92.9%)
LB move op cnt : 0
LB apply : 3.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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 | 5.3603e+05 | 65536 | 2 | 1.223e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.605642161295559 (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.12 us (2.2%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 211.51 us (91.6%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (52.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 | 5.3155e+05 | 65536 | 2 | 1.233e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.567165172979142 (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.76 us (2.4%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 222.20 us (91.8%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 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.1439e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5605254732654696 (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.77 us (2.6%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 200.20 us (91.0%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.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.0037e+05 | 65536 | 2 | 1.637e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.440006418558629 (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.52 us (2.4%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 209.11 us (91.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 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.2548e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6558114789688188 (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.69 us (2.4%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 212.54 us (91.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 20.43 us (95.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 | 5.4322e+05 | 65536 | 2 | 1.206e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.667425070552098 (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.51 us (2.2%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 233.82 us (92.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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 | 5.4199e+05 | 65536 | 2 | 1.209e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.656875158728571 (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 (2.0%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 253.69 us (92.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 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.7569e+05 | 65536 | 2 | 1.378e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.087145371931037 (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.41 us (2.4%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 202.28 us (91.2%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (56.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 | 5.2696e+05 | 65536 | 2 | 1.244e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.527698289700266 (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.59 us (2.4%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 210.83 us (91.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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.3677e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7528103674735362 (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.31 us (2.4%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 205.20 us (91.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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 | 5.4549e+05 | 65536 | 2 | 1.201e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.686956970363941 (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.7%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 197.75 us (90.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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 | 5.7184e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.913347454887542 (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.31 us (2.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 201.06 us (91.2%)
LB move op cnt : 0
LB apply : 3.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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.3707e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.755389884590489 (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.46 us (2.5%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 195.46 us (91.0%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.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.3731e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7574106661453293 (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.91 us (2.3%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 238.03 us (92.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.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.3462e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.734269148731642 (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.34 us (2.5%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 194.54 us (90.9%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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.2369e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.640425139158783 (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.81 us (2.6%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 200.91 us (91.0%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.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.2317e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6359665049921306 (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.65 us (2.2%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 234.80 us (92.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 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.1385e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5558763598000653 (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.60 us (2.5%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 202.79 us (91.3%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.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.2193e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6252776523406562 (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 : 6.34 us (2.7%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 212.36 us (90.8%)
LB move op cnt : 0
LB apply : 3.59 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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 | 5.3023e+05 | 65536 | 2 | 1.236e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.555804742567489 (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.39 us (2.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.30 us (0.6%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 208.55 us (91.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (56.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 | 5.6678e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.869820513757466 (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 (2.4%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 213.61 us (91.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.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 | 5.6658e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.868126319027012 (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.54 us (2.3%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 218.46 us (91.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.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 | 5.4099e+05 | 65536 | 2 | 1.211e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.648269308464155 (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.89 us (2.4%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 226.35 us (91.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 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.0258e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4590325859894993 (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.80 us (2.4%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 224.24 us (91.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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 | 3.9391e+05 | 65536 | 2 | 1.664e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3844795492690474 (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.46 us (2.4%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 205.79 us (91.4%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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.1264e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5454544394011984 (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.34 us (2.3%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 209.99 us (91.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (11.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.1467e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.562911480552172 (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.95 us (2.5%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 218.89 us (91.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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.0696e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.496657702241214 (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.69 us (2.2%)
patch tree reduce : 2.38 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 240.52 us (92.1%)
LB move op cnt : 0
LB apply : 3.58 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.0802e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5057978647670662 (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.24 us (2.4%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 200.34 us (91.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.1699e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.582838228561279 (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.59 us (2.5%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 205.72 us (91.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.1987e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6075602469653445 (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.80 us (2.4%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 226.96 us (92.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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.1963e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.60550431421064 (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.79 us (2.5%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 213.70 us (91.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.1773e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5891830380613596 (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.36 us (2.1%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 233.52 us (92.2%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.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.2156e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6220932242000985 (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.71 us (2.5%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 209.77 us (91.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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.1213e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.54106626453409 (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.54 us (2.5%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 201.88 us (91.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (55.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 | 5.2358e+05 | 65536 | 2 | 1.252e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.498653639935175 (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.55 us (2.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 218.58 us (91.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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 | 5.8443e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.021455714050938 (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.76 us (2.5%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.36 us (0.6%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 206.15 us (91.2%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.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.9077e+05 | 65536 | 2 | 1.335e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.216753015885951 (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.14 us (2.2%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 219.69 us (91.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.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.1698e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5827093400082917 (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.36 us (2.4%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 205.33 us (91.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.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.1795e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5910968106202876 (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.41 us (2.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 205.86 us (91.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.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.1883e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5986445235023172 (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.59 us (1.0%)
patch tree reduce : 1.83 us (0.3%)
gen split merge : 1.23 us (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 536.05 us (96.3%)
LB move op cnt : 0
LB apply : 3.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 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.9961e+05 | 65536 | 2 | 1.640e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4334613246354793 (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.53 us (2.1%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 238.14 us (92.4%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.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.1297e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.54826163880262 (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.88 us (2.5%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 219.82 us (91.6%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.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.1702e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.583109325994927 (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 (2.5%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 205.15 us (91.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 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.9745e+05 | 65536 | 2 | 1.649e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.414914396955736 (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.54 us (2.3%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 221.54 us (91.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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 | 3.9861e+05 | 65536 | 2 | 1.644e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.424867101012936 (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.36 us (2.4%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 205.44 us (91.4%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (51.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.9115e+05 | 65536 | 2 | 1.675e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.360810188299648 (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 (2.5%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 202.32 us (91.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.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.9008e+05 | 65536 | 2 | 1.680e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.351617521357203 (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.42 us (2.5%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 201.27 us (91.1%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.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.0262e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4593887056666888 (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.48 us (2.4%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 207.31 us (91.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (51.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.0350e+05 | 65536 | 2 | 1.624e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.466898943792333 (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.69 us (2.2%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 242.45 us (92.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.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.1324e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5506137466826413 (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.49 us (2.4%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 204.43 us (91.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.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.1042e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.526374188203272 (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.83 us (2.6%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 206.85 us (91.2%)
LB move op cnt : 0
LB apply : 3.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 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.1025e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5249265400422285 (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.58 us (2.5%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 200.35 us (91.0%)
LB move op cnt : 0
LB apply : 3.46 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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 | 3.5508e+05 | 65536 | 2 | 1.846e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0508615246102786 (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 : 6.96 us (3.1%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.32 us (0.6%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 204.24 us (89.7%)
LB move op cnt : 0
LB apply : 3.93 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.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.2608e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.660903383173878 (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.35 us (2.4%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 199.27 us (91.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.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.1589e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5733879076324464 (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.72 us (2.5%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 210.10 us (91.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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.1245e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5438149068834846 (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.61 us (2.3%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 225.82 us (91.6%)
LB move op cnt : 0
LB apply : 3.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 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.3083e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7017850901903273 (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.38 us (2.4%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 204.80 us (91.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (52.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.4077e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.787171938357698 (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 : 8.10 us (3.4%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 215.24 us (90.7%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (55.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.4067e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7862494680192866 (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.43 us (2.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 218.91 us (91.7%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (51.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.3875e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7697634811845866 (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.72 us (2.5%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 207.11 us (91.1%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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 | 5.4105e+05 | 65536 | 2 | 1.211e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.648749071351568 (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.82 us (2.6%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 207.80 us (91.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.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.4752e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.845184770319358 (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.44 us (2.6%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 190.91 us (90.6%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.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 | 5.8169e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.997965672788361 (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.77 us (2.6%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 201.15 us (91.0%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.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.7163e+05 | 65536 | 2 | 1.390e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.052328640728708 (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.20 us (2.6%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 181.27 us (90.2%)
LB move op cnt : 0
LB apply : 3.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (57.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.5057e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8713915178766616 (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.89 us (2.6%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 204.19 us (91.2%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.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 | 5.9238e+05 | 65536 | 2 | 1.106e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.089764930177547 (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.52 us (2.2%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 12.39 us (5.0%)
LB compute : 214.27 us (86.7%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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 | 5.8847e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.056236647287136 (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.33 us (2.7%)
patch tree reduce : 2.12 us (1.1%)
gen split merge : 1.13 us (0.6%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 179.39 us (90.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.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 | 5.8750e+05 | 65536 | 2 | 1.116e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.047885290020516 (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.99 us (2.9%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 1.13 us (0.6%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 184.88 us (90.1%)
LB move op cnt : 0
LB apply : 3.50 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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 | 5.9085e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.076611322974023 (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.81 us (2.5%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 215.88 us (91.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.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 | 5.8812e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.053154735362956 (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.94 us (2.9%)
patch tree reduce : 2.19 us (1.1%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.6%)
LB compute : 181.11 us (89.8%)
LB move op cnt : 0
LB apply : 3.49 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (50.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 | 5.9437e+05 | 65536 | 2 | 1.103e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.106919285349365 (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.56 us (2.6%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 192.92 us (90.8%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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 | 5.8732e+05 | 65536 | 2 | 1.116e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.046314535584245 (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.35 us (2.7%)
patch tree reduce : 2.09 us (1.1%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 177.37 us (90.2%)
LB move op cnt : 0
LB apply : 3.16 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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.7743e+05 | 65536 | 2 | 1.373e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.102136695169918 (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.35 us (2.2%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 222.65 us (91.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.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 | 5.8979e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.06758781805278 (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.66 us (2.8%)
patch tree reduce : 1.97 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 182.52 us (90.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (53.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 | 5.8882e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.059202588889875 (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 : 6.02 us (3.0%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 179.95 us (90.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.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 | 5.8952e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.065203790008099 (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.83 us (1.1%)
patch tree reduce : 1.95 us (0.4%)
gen split merge : 1.00 us (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 506.28 us (96.1%)
LB move op cnt : 0
LB apply : 3.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 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 | 5.7664e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.954574494141599 (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.40 us (2.4%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 206.10 us (91.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 5.8755e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.048311374489249 (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.54 us (2.4%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 212.04 us (91.6%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (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 | 5.9089e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.077034443144562 (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.96 us (2.9%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.6%)
LB compute : 181.92 us (89.9%)
LB move op cnt : 0
LB apply : 3.18 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.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.8763e+05 | 65536 | 2 | 1.344e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.189812764657456 (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.76 us (2.7%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 196.43 us (90.6%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.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 | 5.8166e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.997724845763204 (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.57 us (2.8%)
patch tree reduce : 2.15 us (1.1%)
gen split merge : 1.31 us (0.7%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 179.89 us (90.0%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (54.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.4113e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.790280550826571 (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.65 us (2.4%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 214.34 us (91.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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.2896e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.685703279876924 (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.44 us (1.9%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 267.77 us (93.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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.3197e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7115550767051966 (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.63 us (2.1%)
patch tree reduce : 2.22 us (0.8%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 241.48 us (92.1%)
LB move op cnt : 0
LB apply : 3.66 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (54.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.3060e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.699785929595963 (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.66 us (2.4%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 218.09 us (91.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.4496e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8231574519891622 (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.62 us (2.2%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 232.19 us (91.9%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (55.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.3778e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7614749421493756 (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.76 us (2.4%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 219.93 us (91.7%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.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.4304e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8066483888374227 (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.62 us (2.5%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 203.27 us (90.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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.4359e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8113652250033927 (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.88 us (2.3%)
patch tree reduce : 2.21 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 230.93 us (91.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (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.4631e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8347762495254663 (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.30 us (2.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 206.06 us (91.5%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (51.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.3638e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7493888682039147 (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.30 us (2.3%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 213.22 us (91.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 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.3095e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7027509546620556 (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.46 us (1.9%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 262.91 us (93.0%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 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.2899e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.685922923518781 (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 : 6.22 us (2.8%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 201.40 us (90.7%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 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.3299e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7202659755760434 (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.57 us (2.5%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 202.74 us (90.9%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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.6917e+05 | 65536 | 2 | 1.397e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.03119913859026 (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.83 us (2.6%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 204.37 us (90.9%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 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.3607e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.746778618470166 (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.88 us (2.5%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 211.36 us (91.4%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (55.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.4532e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8262048585459847 (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 : 6.63 us (2.6%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 232.72 us (91.7%)
LB move op cnt : 0
LB apply : 3.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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.2951e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6903792730557003 (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.15 us (2.3%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 207.48 us (91.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (51.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.1927e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6024293683387842 (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 : 6.14 us (2.7%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 210.17 us (91.2%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (51.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 | 5.5354e+05 | 65536 | 2 | 1.184e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.756041880023115 (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.53 us (2.1%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 248.42 us (92.7%)
LB move op cnt : 0
LB apply : 3.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 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.6923e+05 | 65536 | 2 | 1.397e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.031705859041707 (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.78 us (2.5%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 208.22 us (91.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.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 | 5.8243e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.004318942644024 (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.42 us (2.4%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 207.74 us (91.3%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (54.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.3016e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6959763061533857 (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.80 us (2.2%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 238.37 us (92.4%)
LB move op cnt : 0
LB apply : 3.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.3374e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7267532977240263 (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.93 us (2.3%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 236.38 us (92.1%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (54.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.0560e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4849608958979568 (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.51 us (1.9%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 266.25 us (92.7%)
LB move op cnt : 0
LB apply : 4.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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.3258e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.716816266733073 (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.95 us (2.3%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 234.25 us (92.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.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.3415e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.730254895121829 (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.11 us (2.4%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 237.82 us (92.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.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.3400e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7289958559300236 (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.74 us (2.5%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 209.12 us (91.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (56.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.2400e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6430708301185297 (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.48 us (2.4%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 205.22 us (91.4%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.4275e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8041629617018358 (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 : 6.01 us (2.5%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 206.59 us (86.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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 | 5.6056e+05 | 65536 | 2 | 1.169e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.816417486607646 (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.30 us (2.0%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 240.79 us (92.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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 | 5.7410e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.932735437607616 (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.51 us (2.5%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 198.06 us (90.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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 | 5.7192e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.914017079668597 (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.55 us (0.9%)
patch tree reduce : 2.08 us (0.4%)
gen split merge : 1.19 us (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.2%)
LB compute : 563.17 us (96.4%)
LB move op cnt : 0
LB apply : 3.78 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 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 | 5.5965e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.808587683932378 (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.53 us (2.4%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 214.05 us (91.8%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.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 | 5.6892e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.888224056170445 (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.93 us (2.6%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.29 us (0.6%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 205.65 us (90.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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 | 5.7400e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.931853181372522 (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.74 us (2.7%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 194.39 us (90.9%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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 | 5.1150e+05 | 65536 | 2 | 1.281e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.3948493642604785 (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.30 us (1.3%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 388.06 us (95.1%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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 | 5.9234e+05 | 65536 | 2 | 1.106e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.089469174284082 (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.31 us (2.7%)
patch tree reduce : 1.89 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 176.21 us (90.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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 | 5.8422e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.019683743864241 (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.78 us (2.6%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 204.58 us (91.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (53.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 | 5.2122e+05 | 65536 | 2 | 1.257e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.4783876081880125 (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.62 us (2.7%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 961.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 188.21 us (90.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (53.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 | 5.6980e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.895807738625186 (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.51 us (2.4%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 213.92 us (91.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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 | 5.7076e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.904032194001241 (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.84 us (2.5%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 210.30 us (91.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (55.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 | 5.8318e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.010772389780941 (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.62 us (2.3%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 226.23 us (91.9%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.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 | 5.8875e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.058627690955093 (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.71 us (2.4%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 213.42 us (91.5%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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 | 5.8108e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.992742335080877 (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.21 us (1.9%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 256.24 us (93.0%)
LB move op cnt : 0
LB apply : 3.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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 | 5.8023e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.985418677626771 (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.32 us (2.1%)
patch tree reduce : 2.12 us (0.8%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 231.41 us (92.0%)
LB move op cnt : 0
LB apply : 3.43 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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 | 5.7996e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.983115330464986 (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.18 us (2.3%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 207.29 us (91.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (56.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 | 5.0031e+05 | 65536 | 2 | 1.310e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2987323120565275 (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.84 us (2.6%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 205.92 us (91.2%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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 | 5.8327e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.011553133528773 (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.48 us (2.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 209.17 us (91.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (55.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 | 5.7905e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.975287545359796 (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 (2.4%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 209.14 us (91.5%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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 | 5.8891e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.059982539127427 (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 : 6.11 us (2.6%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 213.19 us (91.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.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 | 5.8670e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.041024093005275 (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.57 us (2.4%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 211.36 us (91.6%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (54.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.7451e+05 | 65536 | 2 | 1.381e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.077063696451278 (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.21 us (2.3%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 209.51 us (91.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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 | 5.7793e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.965678100282394 (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 : 5.73 us (2.2%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 240.01 us (92.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (53.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 | 5.3932e+05 | 65536 | 2 | 1.215e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.6338795782875515 (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.61 us (2.3%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 222.71 us (91.8%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.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 | 5.3131e+05 | 65536 | 2 | 1.233e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.565081273309126 (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.40 us (2.6%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 188.78 us (90.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (53.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 | 5.4745e+05 | 65536 | 2 | 1.197e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.703724074318672 (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.34 us (2.3%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 215.45 us (91.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.6220e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.971275470053586 (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.69 us (2.9%)
patch tree reduce : 1.88 us (1.0%)
gen split merge : 1.08 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 175.01 us (90.0%)
LB move op cnt : 0
LB apply : 2.97 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (54.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.2412e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.644071263598131 (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.53 us (2.1%)
patch tree reduce : 2.23 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 247.40 us (92.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.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.2491e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6509185129302177 (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.85 us (2.7%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 194.09 us (90.7%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.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 | 5.7808e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.966946719766083 (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.53 us (2.6%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 189.76 us (90.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (53.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 | 5.6465e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.851545787687542 (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.25 us (2.4%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 195.17 us (91.1%)
LB move op cnt : 0
LB apply : 2.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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 | 5.8154e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.996678899356302 (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.87 us (2.6%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 203.10 us (91.0%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.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 | 5.7497e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.940201891616206 (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.88 us (2.8%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.14 us (0.6%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 186.62 us (90.3%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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 | 5.7683e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.956210572063445 (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.85 us (2.7%)
patch tree reduce : 2.34 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 192.78 us (90.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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 | 5.7202e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.914906307144885 (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.48 us (2.6%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.40 us (0.7%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 193.93 us (90.7%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (56.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 | 5.7727e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.959943092269978 (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.70 us (2.7%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 193.48 us (90.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 5.7935e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.977814144974204 (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.33 us (2.5%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 195.92 us (90.8%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.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 | 5.8041e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.986984075093289 (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 : 7.20 us (3.3%)
patch tree reduce : 2.88 us (1.3%)
gen split merge : 1.55 us (0.7%)
split / merge op : 0/0
apply split merge : 1.70 us (0.8%)
LB compute : 193.95 us (88.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (56.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 | 5.7298e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.923092063801283 (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.91 us (2.7%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 195.57 us (90.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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 | 5.7184e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.913310285060994 (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.67 us (2.7%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 192.32 us (90.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (52.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 | 5.7938e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.978103271353303 (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.38 us (2.2%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 224.46 us (91.8%)
LB move op cnt : 0
LB apply : 3.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (54.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 | 5.8142e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.9955938574279815 (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.80 us (2.6%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 202.27 us (90.8%)
LB move op cnt : 0
LB apply : 3.52 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (53.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 | 5.8468e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.02361308592522 (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 (2.4%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 211.90 us (90.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (56.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 | 5.7893e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.974228075025448 (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.53 us (2.6%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 195.66 us (90.7%)
LB move op cnt : 0
LB apply : 2.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (54.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.2247e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.629909075058245 (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.67 us (2.5%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 204.84 us (90.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.33 us (93.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.3614e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.747362214220094 (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.13 us (2.6%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 218.24 us (91.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (55.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.3383e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.727552565659388 (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.50 us (2.4%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 206.03 us (91.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (53.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.3557e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.742472542860399 (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.59 us (2.5%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 199.53 us (90.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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.3983e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.779103173123857 (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.55 us (2.3%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 224.48 us (92.0%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (54.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.4132e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.791859267168109 (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.56 us (2.3%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 218.13 us (91.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.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.3694e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.754254514377966 (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.93 us (1.0%)
patch tree reduce : 1.98 us (0.3%)
gen split merge : 1.10 us (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.2%)
LB compute : 571.13 us (96.4%)
LB move op cnt : 0
LB apply : 3.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 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.3928e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.774322152271092 (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.60 us (2.1%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 242.65 us (92.3%)
LB move op cnt : 0
LB apply : 3.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (53.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.3666e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.751869560283531 (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.90 us (1.8%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 302.76 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.35 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.3399e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.728896215520402 (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 : 6.09 us (2.5%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 892.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 225.73 us (91.6%)
LB move op cnt : 0
LB apply : 3.46 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (58.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.3485e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7362991147751563 (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 : 6.47 us (2.7%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 219.29 us (91.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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.3613e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7472890459571335 (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.95 us (2.2%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 248.70 us (92.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (58.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.3507e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.73821042688249 (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 : 6.22 us (2.3%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 252.85 us (92.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 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.4033e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.783372543515186 (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.96 us (2.2%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 246.98 us (92.2%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.3832e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.766101609062164 (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 : 6.09 us (2.5%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 224.85 us (91.6%)
LB move op cnt : 0
LB apply : 3.59 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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.4050e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.784828304934137 (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.53 us (2.3%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 225.59 us (91.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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.3327e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.722736620504443 (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.62 us (2.3%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.31 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 225.15 us (91.8%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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 | 4.2215e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6271723159691414 (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.94 us (2.9%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 187.85 us (90.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 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.1784e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5901649169539103 (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.59 us (2.5%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 206.45 us (91.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.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.2253e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.63042190627437 (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.74 us (2.5%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 209.71 us (90.9%)
LB move op cnt : 0
LB apply : 3.57 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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.2060e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6138083511042094 (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.97 us (2.5%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 222.51 us (91.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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.0952e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.518605449061147 (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.13 us (2.5%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 225.11 us (91.9%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.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.1808e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5922279316577246 (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.82 us (2.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 226.75 us (91.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.2222e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.627736328779042 (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.57 us (2.3%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 224.24 us (91.7%)
LB move op cnt : 0
LB apply : 3.53 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.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.2205e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6263441407844423 (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.72 us (2.4%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 218.30 us (91.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.1433e+05 | 65536 | 2 | 1.582e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.559989456404296 (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.58 us (2.0%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 261.22 us (92.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 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 | 5.4894e+05 | 65536 | 2 | 1.194e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.716556331555551 (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.68 us (2.4%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 217.35 us (91.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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 | 5.3170e+05 | 65536 | 2 | 1.233e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.568415922184263 (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.86 us (2.3%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 229.13 us (91.9%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.8909e+05 | 65536 | 2 | 1.684e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.343129062041326 (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.69 us (2.3%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 231.21 us (91.9%)
LB move op cnt : 0
LB apply : 3.49 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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 | 4.5175e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8815088063729 (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.91 us (2.4%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 222.02 us (91.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.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 | 5.8480e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.024664511311521 (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 (2.2%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 218.81 us (91.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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 | 5.8209e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.001429022874959 (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.65 us (2.6%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 194.05 us (90.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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 | 5.8154e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.996669100529686 (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.74 us (2.7%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 188.92 us (90.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (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 | 5.7951e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.9792041071925395 (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.70 us (2.7%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 194.52 us (90.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.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 | 5.8339e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.012575822240761 (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.61 us (2.6%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 193.63 us (90.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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 | 5.7994e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.98289983149285 (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.84 us (2.7%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 199.18 us (90.7%)
LB move op cnt : 0
LB apply : 3.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (52.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.4325e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.808473976263871 (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 (2.6%)
patch tree reduce : 2.33 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 210.58 us (91.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.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.2495e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.651236684347929 (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.81 us (2.5%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 211.37 us (91.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (54.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.2659e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.665282941657164 (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.42 us (2.1%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 237.55 us (92.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.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.2605e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6606717183145876 (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.62 us (2.3%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 220.58 us (91.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.2566e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.657324231235208 (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.71 us (2.5%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.33 us (0.6%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 208.25 us (91.4%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.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.2295e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.634031757520449 (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.66 us (2.5%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 206.12 us (91.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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 | 4.2548e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.655776826347558 (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.06 us (2.7%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 208.32 us (91.2%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 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.4060e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.78569655780944 (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 : 6.01 us (2.5%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 218.37 us (91.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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 | 5.7477e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.93846838583093 (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.30 us (2.2%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 222.74 us (92.0%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (58.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 | 5.7707e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.958289705129543 (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 : 6.04 us (2.4%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 231.43 us (91.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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 | 5.7331e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.925987974975496 (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.61 us (2.3%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 223.02 us (91.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (58.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 | 5.7135e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.9091066093895535 (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.65 us (2.7%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 192.74 us (90.9%)
LB move op cnt : 0
LB apply : 3.40 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.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 | 5.7795e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.965850464478752 (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.42 us (2.2%)
patch tree reduce : 2.21 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 224.23 us (91.8%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (54.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 | 5.8638e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.0382406196522025 (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.51 us (2.2%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 226.66 us (92.1%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (56.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.6444e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9905015805656827 (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.81 us (2.5%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 207.37 us (91.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 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.9970e+05 | 65536 | 2 | 1.640e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6239286690815633 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 373.92534508600005 (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.63 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.69 us (56.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.32 us (0.4%)
patch tree reduce : 1.17 us (0.4%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.2%)
LB compute : 290.61 us (96.7%)
LB move op cnt : 0
LB apply : 2.77 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 : 374.073177429 (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.71 us (2.6%)
patch tree reduce : 1.82 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 : 270.49 us (92.7%)
LB move op cnt : 0
LB apply : 3.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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 | 5.0986e+05 | 65536 | 2 | 1.285e-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.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1.93 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 : 260.06 us (92.9%)
LB move op cnt : 0
LB apply : 3.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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 | 5.5964e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.808510773424542 (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.88 us (2.5%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 214.85 us (91.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (58.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 | 5.7598e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.948903409129686 (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.71 us (2.5%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 208.08 us (91.2%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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.5353e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8967476584231937 (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.86 us (2.5%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 212.22 us (91.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 | 5.8179e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.998809482394987 (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.28 us (2.5%)
patch tree reduce : 1.78 us (0.9%)
gen split merge : 971.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 190.53 us (90.9%)
LB move op cnt : 0
LB apply : 3.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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.3199e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7117405737829716 (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.35 us (2.4%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 202.07 us (91.4%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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.7893e+05 | 65536 | 2 | 1.368e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4447252423242753 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 375.03833025700004 (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.31 us (2.7%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 245.77 us (92.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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 | 5.7056e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.902292818478572 (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.55 us (2.4%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 214.86 us (91.7%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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 | 5.7283e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.921852240759174 (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 : 5.45 us (2.4%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 211.74 us (91.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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 | 5.7610e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.949938237194925 (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.77 us (2.9%)
patch tree reduce : 2.12 us (1.1%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 176.60 us (89.5%)
LB move op cnt : 0
LB apply : 3.53 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (52.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.8643e+05 | 65536 | 2 | 1.347e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.179449952970642 (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.27 us (2.5%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 187.89 us (90.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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 | 5.6628e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.865509185080708 (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 : 5.31 us (2.6%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 183.25 us (90.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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.0252e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0547137389584638 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 375.852855469 (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 : 7.14 us (2.3%)
patch tree reduce : 2.23 us (0.7%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 288.49 us (92.7%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 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.9235e+05 | 65536 | 2 | 1.331e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2303379376616785 (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 : 9.42 us (4.3%)
patch tree reduce : 3.03 us (1.4%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 194.95 us (88.6%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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 | 5.6648e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.867226842911622 (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.64 us (2.6%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 193.75 us (90.8%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (54.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 | 5.5485e+05 | 65536 | 2 | 1.181e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.767369016048428 (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.78 us (2.3%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 231.51 us (92.0%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.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 | 5.4867e+05 | 65536 | 2 | 1.194e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.714227500367731 (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.53 us (2.3%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.33 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 222.53 us (91.9%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (52.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.2986e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.693430689429134 (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.81 us (2.4%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 225.44 us (91.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.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.9807e+05 | 65536 | 2 | 1.316e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5424258017107793 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 376.691277173 (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.57 us (2.8%)
patch tree reduce : 2.40 us (0.9%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 248.09 us (91.6%)
LB move op cnt : 0
LB apply : 3.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.7923e+05 | 65536 | 2 | 1.368e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.117568851025905 (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 : 5.54 us (2.6%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 195.01 us (90.9%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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 | 5.5420e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.761731811064384 (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.74 us (2.5%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 213.31 us (91.6%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.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.0916e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.515524047448724 (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.70 us (2.2%)
patch tree reduce : 2.43 us (0.9%)
gen split merge : 1.32 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 237.48 us (91.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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.8754e+05 | 65536 | 2 | 1.691e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.329808264280598 (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.43 us (2.5%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 202.02 us (91.3%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (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 | 3.9793e+05 | 65536 | 2 | 1.647e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4190745616963247 (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.31 us (2.4%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 205.00 us (91.4%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (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 | 3.8930e+05 | 65536 | 2 | 1.683e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9872306472871135 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 377.66822382500004 (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 : 8.25 us (2.6%)
patch tree reduce : 2.31 us (0.7%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 293.23 us (92.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (54.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 | 5.4227e+05 | 65536 | 2 | 1.209e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.659217049124827 (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.50 us (2.4%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 208.88 us (91.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.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 | 5.0031e+05 | 65536 | 2 | 1.310e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.29868502309517 (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.64 us (2.1%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 246.77 us (92.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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 | 5.2380e+05 | 65536 | 2 | 1.251e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.500539620649449 (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.44 us (2.4%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 205.28 us (91.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (53.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 | 5.6379e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.844176142405954 (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.51 us (2.2%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 231.17 us (92.2%)
LB move op cnt : 0
LB apply : 3.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (55.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.1060e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.527932169417487 (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 : 6.00 us (2.3%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 244.00 us (92.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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.1052e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0955351056519924 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 378.55188313300005 (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 : 7.59 us (2.2%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 315.87 us (93.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 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 | 5.6715e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.872990910502249 (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.67 us (2.5%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 206.09 us (91.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (53.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.1937e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6032706809496196 (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.50 us (2.5%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 203.19 us (91.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.0209e+05 | 65536 | 2 | 1.630e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.454841233145311 (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.51 us (2.4%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 205.89 us (91.3%)
LB move op cnt : 0
LB apply : 3.54 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (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.0581e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.486742418948916 (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.54 us (2.5%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 204.39 us (91.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (56.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.0120e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4471808026445543 (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.50 us (2.3%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 219.25 us (91.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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.0048e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0442633468698075 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 379.550247953 (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.59 us (2.7%)
patch tree reduce : 2.21 us (0.8%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 262.87 us (91.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (55.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.8265e+05 | 65536 | 2 | 1.358e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.147027823390634 (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.71 us (2.5%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 205.78 us (91.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.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 | 5.5450e+05 | 65536 | 2 | 1.182e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.764302839220945 (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 : 5.76 us (2.5%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 213.87 us (91.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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 | 5.6666e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.868851199625562 (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 : 6.12 us (2.8%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 201.53 us (91.0%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (55.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.6209e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9702914620159393 (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.81 us (2.6%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 204.70 us (90.7%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.1268e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.545816095746989 (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.56 us (2.2%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 230.00 us (92.0%)
LB move op cnt : 0
LB apply : 3.43 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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 | 4.1414e+05 | 65536 | 2 | 1.582e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1140324262127455 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 380.45122587000003 (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.62 us (2.8%)
patch tree reduce : 2.24 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 251.95 us (91.7%)
LB move op cnt : 0
LB apply : 3.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 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 | 5.7026e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.899763278864386 (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.43 us (2.4%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 205.57 us (91.4%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (55.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.1753e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.587435992369565 (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.69 us (2.6%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 200.71 us (91.1%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.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.2183e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.624438514049572 (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 : 5.75 us (2.2%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 245.94 us (92.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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.1902e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.600305291268003 (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.28 us (2.4%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 203.22 us (91.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.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.4143e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.792804425511312 (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.55 us (2.6%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 193.09 us (90.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (53.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 | 5.6112e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8642704263070415 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 381.35880757900003 (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 : 6.77 us (2.8%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 221.56 us (91.0%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 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 | 5.5853e+05 | 65536 | 2 | 1.173e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.7989607120124536 (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.41 us (2.7%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 182.81 us (90.3%)
LB move op cnt : 0
LB apply : 3.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.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 | 5.5590e+05 | 65536 | 2 | 1.179e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.7763403931832915 (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.25 us (2.3%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 209.21 us (91.6%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (53.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.9027e+05 | 65536 | 2 | 1.679e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3532814641937643 (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 : 5.55 us (2.6%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 192.20 us (90.7%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.1530e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5683238105645447 (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.25 us (2.4%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 202.41 us (91.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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.1621e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.576091905190426 (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.85 us (2.3%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 235.87 us (92.3%)
LB move op cnt : 0
LB apply : 3.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.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.0710e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0780773483560315 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 382.2969019 (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 : 7.37 us (2.4%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 286.86 us (92.8%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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.6801e+05 | 65536 | 2 | 1.400e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.021190451072534 (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.57 us (2.8%)
patch tree reduce : 1.75 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.7%)
LB compute : 177.89 us (90.3%)
LB move op cnt : 0
LB apply : 2.96 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (52.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 | 5.5030e+05 | 65536 | 2 | 1.191e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.728269230672929 (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.77 us (1.2%)
patch tree reduce : 1.91 us (0.4%)
gen split merge : 1.03 us (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.2%)
LB compute : 477.72 us (95.9%)
LB move op cnt : 0
LB apply : 3.48 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 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 | 5.0571e+05 | 65536 | 2 | 1.296e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.3450884774204654 (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.37 us (2.3%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 210.62 us (91.7%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (53.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 | 5.8314e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.010392474505449 (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.73 us (2.3%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.31 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 233.49 us (92.0%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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 | 5.8289e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.008295305811311 (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 : 5.36 us (2.1%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 230.73 us (92.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (56.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 | 5.7280e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.923915260930691 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 383.09402453200005 (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.69 us (3.0%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 235.52 us (91.6%)
LB move op cnt : 0
LB apply : 3.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.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 | 5.7273e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.920954993713199 (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.63 us (2.4%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 217.15 us (91.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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 | 5.7683e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.956234259669578 (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.68 us (2.1%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 253.98 us (92.6%)
LB move op cnt : 0
LB apply : 3.44 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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 | 5.1419e+05 | 65536 | 2 | 1.275e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.418012624317309 (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 : 5.37 us (2.4%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 202.18 us (91.3%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.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.4655e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8368318903737144 (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 : 5.60 us (2.3%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 225.15 us (91.9%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.0504e+05 | 65536 | 2 | 1.618e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.480135170388942 (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.74 us (2.3%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 229.32 us (91.9%)
LB move op cnt : 0
LB apply : 3.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.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.1196e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1028860493904253 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 383.977457409 (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.95 us (2.7%)
patch tree reduce : 2.33 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 272.18 us (92.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (57.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 | 5.6986e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.896270438209212 (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 : 5.60 us (2.1%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 251.58 us (92.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.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 | 5.7170e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.912120461867705 (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.40 us (2.3%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 212.76 us (91.9%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 5.7574e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.946820926527326 (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 : 5.60 us (2.4%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 205.29 us (86.7%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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 | 5.5022e+05 | 65536 | 2 | 1.191e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.7275469435438655 (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.63 us (2.9%)
patch tree reduce : 1.89 us (1.0%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.11 us (0.6%)
LB compute : 175.88 us (89.9%)
LB move op cnt : 0
LB apply : 3.30 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (56.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 | 5.8395e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.017399285940184 (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 : 5.67 us (2.2%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 239.18 us (92.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (57.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 | 5.7527e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9365050554829826 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 384.741316561 (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 : 7.03 us (2.8%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 232.52 us (91.4%)
LB move op cnt : 0
LB apply : 3.44 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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 | 5.7925e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.976969137951842 (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.79 us (2.6%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 201.66 us (91.2%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.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 | 5.5432e+05 | 65536 | 2 | 1.182e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.762781441533065 (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.49 us (2.8%)
patch tree reduce : 2.02 us (1.0%)
gen split merge : 871.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 173.77 us (89.8%)
LB move op cnt : 0
LB apply : 2.99 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.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.3857e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7682239354442264 (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 : 5.51 us (2.4%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 206.32 us (91.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.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 | 5.6698e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.871521240563379 (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.90 us (2.9%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 187.10 us (90.4%)
LB move op cnt : 0
LB apply : 2.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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.5691e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9258628373043436 (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.26 us (2.5%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 189.71 us (91.0%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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.1410e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.113811714107361 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 385.59881183000005 (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.81 us (2.9%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 242.99 us (91.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 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.5870e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.941194323204353 (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.70 us (2.9%)
patch tree reduce : 1.93 us (1.0%)
gen split merge : 942.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 179.03 us (89.8%)
LB move op cnt : 0
LB apply : 3.47 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (54.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 | 5.9071e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.0754680521126625 (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.44 us (2.2%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 230.15 us (92.4%)
LB move op cnt : 0
LB apply : 2.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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 | 5.0470e+05 | 65536 | 2 | 1.299e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.336449376619378 (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.65 us (2.7%)
patch tree reduce : 1.82 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 185.34 us (90.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.7199e+05 | 65536 | 2 | 1.389e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.055370560175947 (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.35 us (2.4%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 204.35 us (91.4%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (52.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 | 5.6651e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.867556407450537 (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.45 us (2.5%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 201.88 us (91.2%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (58.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 | 5.7545e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9374468372940297 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 386.42002546000003 (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 : 7.97 us (3.1%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.6%)
LB compute : 231.08 us (90.8%)
LB move op cnt : 0
LB apply : 3.70 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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 | 5.6432e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.848742687529661 (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.35 us (2.1%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 231.98 us (92.4%)
LB move op cnt : 0
LB apply : 3.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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 | 5.2719e+05 | 65536 | 2 | 1.243e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.529721518487928 (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.82 us (2.7%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 179.61 us (83.8%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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.3594e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7456115485592063 (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.55 us (2.4%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 207.59 us (91.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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 | 5.4982e+05 | 65536 | 2 | 1.192e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.724116168087758 (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.96 us (2.7%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 199.74 us (90.7%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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 | 5.3955e+05 | 65536 | 2 | 1.215e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.635900097374284 (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.37 us (2.8%)
patch tree reduce : 1.88 us (1.0%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 174.35 us (89.8%)
LB move op cnt : 0
LB apply : 3.25 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.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 | 5.6710e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.894824929003204 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 387.22582467200004 (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 : 7.21 us (2.9%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 227.82 us (91.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.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.4910e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.858689633537342 (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.22 us (2.5%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 190.21 us (91.2%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (53.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 | 5.6724e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.873772374822121 (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.59 us (2.7%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 190.51 us (90.5%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 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 | 5.7320e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.925034899742668 (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.55 us (2.5%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 206.69 us (91.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 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.3237e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7149452679235986 (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.65 us (0.6%)
patch tree reduce : 2.08 us (0.2%)
gen split merge : 1.06 us (0.1%)
split / merge op : 0/0
apply split merge : 1.24 us (0.1%)
LB compute : 891.18 us (97.7%)
LB move op cnt : 0
LB apply : 3.72 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (70.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.1704e+05 | 65536 | 2 | 1.571e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5832317904015816 (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.29 us (2.5%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 194.96 us (90.9%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (53.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.7914e+05 | 65536 | 2 | 1.729e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9353394749333797 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 388.14263403200005 (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 : 7.25 us (2.2%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 307.18 us (93.2%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 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 | 5.5931e+05 | 65536 | 2 | 1.172e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.805625307858259 (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.58 us (2.4%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 208.21 us (91.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (56.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 | 5.6432e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.848677429917772 (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.53 us (2.8%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 911.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 179.84 us (90.2%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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 | 5.7863e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.971679697576844 (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 : 16.27 us (6.5%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 219.59 us (87.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (52.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 | 5.8702e+05 | 65536 | 2 | 1.116e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.043722591149548 (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.68 us (2.4%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 216.19 us (91.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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.6608e+05 | 65536 | 2 | 1.406e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.004639618335421 (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.62 us (2.6%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 200.26 us (91.0%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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 | 5.7467e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.933436270550713 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 388.925571056 (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 : 6.76 us (2.5%)
patch tree reduce : 2.17 us (0.8%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 245.83 us (91.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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 | 5.6768e+05 | 65536 | 2 | 1.154e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.877613237290258 (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.44 us (2.4%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 204.28 us (91.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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.7728e+05 | 65536 | 2 | 1.373e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1008592195808165 (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 : 6.03 us (2.9%)
patch tree reduce : 1.99 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 189.59 us (90.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (57.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 | 5.5796e+05 | 65536 | 2 | 1.175e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.7940934210778465 (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.47 us (2.7%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 182.24 us (90.2%)
LB move op cnt : 0
LB apply : 2.99 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (52.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 | 5.2233e+05 | 65536 | 2 | 1.255e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.487898503196516 (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.51 us (2.7%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 184.44 us (90.4%)
LB move op cnt : 0
LB apply : 3.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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 | 5.7216e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.916046491918316 (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.15 us (2.5%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 187.93 us (90.7%)
LB move op cnt : 0
LB apply : 3.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (53.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.3203e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.20535179101472 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 389.746922223 (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 : 6.65 us (2.4%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 255.67 us (92.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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 | 5.4867e+05 | 65536 | 2 | 1.194e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.714235433370953 (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 : 17.45 us (8.1%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 184.66 us (85.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.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 | 5.5918e+05 | 65536 | 2 | 1.172e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.804525595870029 (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.72 us (2.5%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 208.36 us (91.3%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (53.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 | 5.5635e+05 | 65536 | 2 | 1.178e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.780234008432665 (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 : 5.71 us (2.9%)
patch tree reduce : 1.74 us (0.9%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 176.53 us (89.9%)
LB move op cnt : 0
LB apply : 3.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (54.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.9003e+05 | 65536 | 2 | 1.680e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3511978795546074 (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 : 5.45 us (2.6%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 193.15 us (91.0%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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.0700e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.497033187380244 (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 : 5.64 us (2.1%)
patch tree reduce : 1.85 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 : 252.45 us (92.4%)
LB move op cnt : 0
LB apply : 4.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.0714e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.078288646635966 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 390.654781667 (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.68 us (2.3%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 307.71 us (93.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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 | 5.6300e+05 | 65536 | 2 | 1.164e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.837332539560979 (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 : 5.63 us (2.7%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 192.47 us (90.8%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (57.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 | 5.4801e+05 | 65536 | 2 | 1.196e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.708572780915084 (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.40 us (2.6%)
patch tree reduce : 2.02 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 186.75 us (90.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.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 | 5.5570e+05 | 65536 | 2 | 1.179e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.774616516593109 (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.71 us (2.9%)
patch tree reduce : 1.94 us (1.0%)
gen split merge : 1.13 us (0.6%)
split / merge op : 0/0
apply split merge : 1.11 us (0.6%)
LB compute : 180.13 us (90.1%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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 | 5.5656e+05 | 65536 | 2 | 1.178e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.781995529166328 (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 : 5.75 us (2.5%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 209.07 us (91.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (56.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 | 5.4453e+05 | 65536 | 2 | 1.204e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.678682074309074 (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.40 us (2.3%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 217.56 us (91.8%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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 | 5.5382e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.827016465684038 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 391.43841879200005 (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 : 6.87 us (2.7%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 13.26 us (5.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 218.25 us (86.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (56.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.8276e+05 | 65536 | 2 | 1.358e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.147925730900581 (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 : 17.11 us (7.4%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 200.48 us (86.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.1378e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.555278999966248 (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.47 us (2.3%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 214.13 us (91.6%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 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.2118e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.618828960117245 (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.28 us (2.4%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 199.13 us (91.3%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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.2662e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.665611758815503 (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.04 us (2.1%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 215.94 us (91.9%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (76.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.2523e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.653648279520955 (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.26 us (2.2%)
patch tree reduce : 2.21 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 220.56 us (91.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 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.3097e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1999075538181745 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 392.404430628 (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 : 7.57 us (2.6%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 267.38 us (92.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.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 | 5.7430e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.934447148096907 (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.21 us (2.1%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 232.04 us (92.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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 | 5.7705e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.958097303049501 (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.26 us (2.3%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 211.16 us (91.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (53.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 | 5.3959e+05 | 65536 | 2 | 1.215e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.636179229374223 (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.72 us (2.3%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 226.22 us (91.9%)
LB move op cnt : 0
LB apply : 3.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (54.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 | 5.6627e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.8654641172012 (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 : 5.60 us (2.2%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 237.07 us (92.1%)
LB move op cnt : 0
LB apply : 3.67 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.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 | 5.4888e+05 | 65536 | 2 | 1.194e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.7160559148557475 (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.33 us (2.1%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 237.71 us (92.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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 | 5.5199e+05 | 65536 | 2 | 1.187e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8176615299373617 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 393.178432265 (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.82 us (2.8%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.32 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 258.95 us (92.0%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (52.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 | 5.5708e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.786460999829784 (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.51 us (2.2%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 227.55 us (92.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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 | 5.6618e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.864651230974629 (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 : 5.49 us (2.6%)
patch tree reduce : 1.82 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 190.12 us (90.9%)
LB move op cnt : 0
LB apply : 3.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.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 | 5.6945e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.892777769739658 (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.95 us (2.8%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 190.28 us (90.4%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.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 | 5.7906e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.975372081575638 (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.51 us (2.6%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 188.72 us (90.4%)
LB move op cnt : 0
LB apply : 3.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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 | 5.8024e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.98552788004342 (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.64 us (2.6%)
patch tree reduce : 1.86 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 194.09 us (90.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 5.4839e+05 | 65536 | 2 | 1.195e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.799306294683045 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 393.930920039 (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 : 8.47 us (3.0%)
patch tree reduce : 2.20 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 257.59 us (91.6%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 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 | 5.3947e+05 | 65536 | 2 | 1.215e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.635165804487585 (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.22 us (2.5%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 186.20 us (90.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 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 | 5.2916e+05 | 65536 | 2 | 1.238e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.546642635385314 (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.44 us (2.6%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.5%)
LB compute : 193.13 us (90.6%)
LB move op cnt : 0
LB apply : 3.48 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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.2636e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.663295785889424 (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.65 us (2.3%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 230.10 us (92.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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.1570e+05 | 65536 | 2 | 1.577e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5717419059861117 (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.26 us (2.4%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 200.65 us (89.8%)
LB move op cnt : 0
LB apply : 3.82 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.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.0552e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4843119408370313 (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.24 us (2.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 212.90 us (91.6%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (55.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.3431e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.216964367985445 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 394.878131956 (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 : 7.05 us (2.5%)
patch tree reduce : 2.18 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 257.37 us (92.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 5.0325e+05 | 65536 | 2 | 1.302e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.323963244305662 (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.73 us (2.5%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 207.77 us (91.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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 | 4.6010e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9532071716997192 (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.68 us (2.2%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 232.67 us (92.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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.3937e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.775128795650721 (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.70 us (2.5%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 204.14 us (91.2%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (54.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.3211e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.712735753508523 (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.52 us (2.2%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 233.11 us (92.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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.2791e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.676643048616818 (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.91 us (2.6%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.64 us (0.7%)
LB compute : 208.52 us (90.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.2695e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.179419023291775 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 395.82993039800004 (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 : 6.77 us (2.4%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 260.02 us (92.4%)
LB move op cnt : 0
LB apply : 3.59 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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 | 5.4780e+05 | 65536 | 2 | 1.196e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.7067863978536275 (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.64 us (2.4%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 218.82 us (91.9%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (58.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 | 5.7046e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.901486950578755 (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 : 6.37 us (3.0%)
patch tree reduce : 3.52 us (1.6%)
gen split merge : 1.70 us (0.8%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 190.55 us (88.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.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 | 5.7067e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.903224345233552 (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.70 us (2.7%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 189.58 us (90.6%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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.5596e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.917634454151523 (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.52 us (2.5%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 198.63 us (88.8%)
LB move op cnt : 0
LB apply : 8.61 us (3.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.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.3821e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7651946856803855 (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.23 us (2.1%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 235.83 us (92.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.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.3537e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.222402865733001 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 396.693915946 (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 : 8.36 us (2.8%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 280.44 us (92.4%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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 | 5.2371e+05 | 65536 | 2 | 1.251e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.499809497838642 (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.86 us (2.3%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 237.11 us (91.9%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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.3041e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.698100991220915 (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.57 us (2.4%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 215.68 us (91.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 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.2958e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6910406575284105 (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.86 us (2.6%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 206.87 us (91.2%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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.1558e+05 | 65536 | 2 | 1.577e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5707431540233907 (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.79 us (2.6%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 206.35 us (91.2%)
LB move op cnt : 0
LB apply : 3.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.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.1527e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.568024853342039 (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.64 us (2.4%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 212.52 us (91.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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 | 3.8762e+05 | 65536 | 2 | 1.691e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9786213593746313 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 397.680504783 (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 : 8.12 us (3.1%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 237.65 us (91.1%)
LB move op cnt : 0
LB apply : 3.72 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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 | 5.5851e+05 | 65536 | 2 | 1.173e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.798745224129543 (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.54 us (2.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 196.51 us (90.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.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 | 5.4968e+05 | 65536 | 2 | 1.192e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.7229557505822815 (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.65 us (2.4%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 216.64 us (91.5%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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 | 5.5298e+05 | 65536 | 2 | 1.185e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.751293328708196 (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 : 5.53 us (2.7%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 185.56 us (90.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (51.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 | 5.4499e+05 | 65536 | 2 | 1.203e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.682631301747305 (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 : 6.04 us (2.8%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 193.99 us (90.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (56.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 | 5.5489e+05 | 65536 | 2 | 1.181e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.7677065102182095 (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 : 6.06 us (2.4%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 235.18 us (92.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (56.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 | 5.3786e+05 | 65536 | 2 | 1.218e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7455589453676517 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 398.465565254 (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.31 us (2.6%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 256.64 us (92.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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 | 5.3954e+05 | 65536 | 2 | 1.215e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.635786095380181 (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.66 us (2.2%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 233.25 us (91.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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 | 5.5242e+05 | 65536 | 2 | 1.186e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.746446423565327 (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.29 us (2.5%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 188.14 us (90.6%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (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 | 5.4547e+05 | 65536 | 2 | 1.201e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.686773541646614 (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 : 5.60 us (2.5%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 203.26 us (91.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.1219e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5415576168577094 (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.82 us (2.7%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 196.47 us (90.8%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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.3329e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.722836498101601 (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.89 us (2.7%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 201.18 us (91.1%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 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.3935e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.242702882774558 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 399.344545557 (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 : 8.14 us (2.8%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 271.39 us (92.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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 | 5.3838e+05 | 65536 | 2 | 1.217e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.625793841298829 (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.67 us (1.0%)
patch tree reduce : 2.22 us (0.4%)
gen split merge : 1.13 us (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.2%)
LB compute : 552.70 us (96.5%)
LB move op cnt : 0
LB apply : 3.06 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 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 | 5.6533e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.857384416011585 (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.51 us (2.4%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 207.63 us (91.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.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 | 5.6569e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.8604892126167085 (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 : 5.80 us (2.8%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 190.53 us (90.8%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (53.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 | 5.4237e+05 | 65536 | 2 | 1.208e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.660125701542491 (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.40 us (2.6%)
patch tree reduce : 2.02 us (1.0%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 189.37 us (90.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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 | 5.6640e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.866536807896578 (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.74 us (2.9%)
patch tree reduce : 1.88 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 176.88 us (90.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (55.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.4381e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.265480035952595 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 400.155066045 (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.22 us (2.8%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 237.62 us (91.7%)
LB move op cnt : 0
LB apply : 3.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 | 5.6632e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.8658705150318555 (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.91 us (2.3%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 236.89 us (91.9%)
LB move op cnt : 0
LB apply : 3.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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 | 5.2407e+05 | 65536 | 2 | 1.251e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.502912419556791 (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.69 us (2.4%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 216.15 us (91.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.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 | 5.5369e+05 | 65536 | 2 | 1.184e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.757342164386867 (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.91 us (2.3%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 239.84 us (92.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.6001e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9524305017830086 (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.79 us (2.3%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 226.16 us (91.7%)
LB move op cnt : 0
LB apply : 3.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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 | 5.5708e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.786458599335858 (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.76 us (2.5%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 211.03 us (91.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (58.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.0997e+05 | 65536 | 2 | 1.599e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.092741719923204 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 400.99324242700004 (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.05 us (2.3%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 288.37 us (93.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 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 | 5.4827e+05 | 65536 | 2 | 1.195e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.710774602431471 (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.44 us (2.7%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.11 us (0.6%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 178.42 us (90.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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 | 5.4840e+05 | 65536 | 2 | 1.195e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.711896551790478 (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.72 us (3.0%)
patch tree reduce : 1.90 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.6%)
LB compute : 172.46 us (89.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.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.7902e+05 | 65536 | 2 | 1.368e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.115817021211104 (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.18 us (2.3%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 210.41 us (91.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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 | 5.7334e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.926168885922442 (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 : 5.23 us (2.3%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 207.23 us (91.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (67.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 | 5.8286e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.007994154716688 (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 : 5.79 us (2.5%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 207.32 us (91.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 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 | 5.8346e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.978337104318266 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 401.78278846700005 (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.04 us (2.8%)
patch tree reduce : 2.33 us (0.9%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 231.75 us (91.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (55.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.7510e+05 | 65536 | 2 | 1.379e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.082121673132893 (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.38 us (2.7%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.14 us (0.6%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 181.56 us (90.4%)
LB move op cnt : 0
LB apply : 2.99 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.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.6902e+05 | 65536 | 2 | 1.397e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.029887700675209 (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 : 5.13 us (2.7%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 174.15 us (90.1%)
LB move op cnt : 0
LB apply : 3.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (58.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.8866e+05 | 65536 | 2 | 1.341e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.198667326374983 (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 : 5.88 us (2.4%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 219.85 us (91.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.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 | 5.8563e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.031759975268847 (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.86 us (2.6%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 208.74 us (91.3%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (53.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.8451e+05 | 65536 | 2 | 1.353e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.162937063623498 (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 : 5.37 us (2.3%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 217.31 us (91.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.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.9575e+05 | 65536 | 2 | 1.322e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5305909823189126 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 402.63241430100004 (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 : 7.22 us (2.7%)
patch tree reduce : 2.20 us (0.8%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 248.96 us (91.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.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.6606e+05 | 65536 | 2 | 1.406e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.004418252136461 (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.08 us (2.3%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 203.88 us (91.4%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (55.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 | 5.7098e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.905900471988329 (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.41 us (2.5%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 197.48 us (91.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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 | 5.5964e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.808526869814173 (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.70 us (2.8%)
patch tree reduce : 1.84 us (0.9%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 186.40 us (90.6%)
LB move op cnt : 0
LB apply : 3.00 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.6547e+05 | 65536 | 2 | 1.408e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9993384044205977 (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.69 us (2.6%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 201.11 us (91.0%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.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 | 5.6672e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.86930789135515 (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.46 us (2.5%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 200.94 us (91.2%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.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 | 5.0776e+05 | 65536 | 2 | 1.291e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.591892545669051 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 403.448973335 (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 : 6.62 us (2.8%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 218.75 us (91.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.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 | 5.5351e+05 | 65536 | 2 | 1.184e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.755819866054609 (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 : 5.55 us (2.4%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 214.63 us (91.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.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 | 5.5189e+05 | 65536 | 2 | 1.187e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.7419001665759595 (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.09 us (1.1%)
patch tree reduce : 1.78 us (0.4%)
gen split merge : 1.11 us (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.2%)
LB compute : 463.69 us (95.9%)
LB move op cnt : 0
LB apply : 3.12 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 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 | 5.7487e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.939351320888045 (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 : 5.36 us (2.6%)
patch tree reduce : 1.81 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 189.61 us (90.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 | 5.7048e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.901601381760359 (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 : 5.44 us (2.6%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 193.01 us (91.0%)
LB move op cnt : 0
LB apply : 2.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (58.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 | 5.7498e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.940317010707935 (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 : 5.51 us (2.3%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 219.53 us (91.8%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (58.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 | 5.7950e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.95810765217387 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 404.20028639000003 (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 : 7.84 us (2.8%)
patch tree reduce : 2.23 us (0.8%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 255.68 us (91.9%)
LB move op cnt : 0
LB apply : 3.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (48.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 | 5.7316e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.9246403524444045 (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.67 us (2.1%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 253.72 us (92.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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 | 5.6027e+05 | 65536 | 2 | 1.170e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.81387979788803 (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.10 us (2.6%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 217.09 us (91.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (53.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 | 5.8128e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.994390875082777 (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 : 6.11 us (2.6%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 212.24 us (91.2%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (53.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 | 5.7611e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.950045890772994 (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.34 us (2.1%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 234.47 us (91.9%)
LB move op cnt : 0
LB apply : 4.45 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.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 | 5.2400e+05 | 65536 | 2 | 1.251e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.502307015611613 (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.16 us (2.3%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 204.87 us (91.5%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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 | 5.8390e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9805830261808492 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 404.97747420900004 (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.16 us (2.5%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 262.28 us (92.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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 | 5.8003e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.983652064332284 (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.46 us (2.5%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 200.91 us (91.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (50.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.2738e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.672100389047388 (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.22 us (2.3%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 206.56 us (91.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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 | 5.7990e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.9825320226135155 (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.10 us (2.9%)
patch tree reduce : 1.82 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 192.89 us (90.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.0838e+05 | 65536 | 2 | 1.605e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5088865465002925 (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.54 us (2.3%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 219.60 us (91.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (54.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.8272e+05 | 65536 | 2 | 1.358e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.147598696400915 (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.75 us (2.1%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 247.81 us (92.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 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.2552e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.172121924714729 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 405.86658495800003 (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 : 6.82 us (2.1%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 304.48 us (93.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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.3292e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.719678527147295 (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.31 us (2.0%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 241.09 us (92.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.1591e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5735513688536527 (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.27 us (2.3%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 210.06 us (91.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.0348e+05 | 65536 | 2 | 1.624e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4667071455950187 (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.29 us (1.9%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 256.70 us (93.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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 | 5.6913e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.88999736983392 (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 : 5.55 us (2.5%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.42 us (0.6%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 204.47 us (91.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 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.2474e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6494561823425054 (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.76 us (2.5%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 207.01 us (91.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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.0058e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0448015827009187 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 406.84437135800005 (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 : 7.08 us (2.3%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 287.89 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.33 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 | 5.7919e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.976505619092461 (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.09 us (2.4%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 234.14 us (92.0%)
LB move op cnt : 0
LB apply : 3.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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.9683e+05 | 65536 | 2 | 1.319e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.268800022353528 (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.40 us (2.2%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 209.57 us (87.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.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 | 5.7153e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.91068251392887 (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.59 us (2.5%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 206.39 us (91.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.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 | 5.6031e+05 | 65536 | 2 | 1.170e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.814251157535713 (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.87 us (2.3%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 240.19 us (92.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 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.0682e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4954602109509043 (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.81 us (2.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.31 us (0.6%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 202.26 us (90.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (55.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.1959e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1418190170348064 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 407.707376531 (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 : 7.91 us (2.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.08 us (0.3%)
LB compute : 288.40 us (92.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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 | 5.4199e+05 | 65536 | 2 | 1.209e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.656831985895783 (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.60 us (2.5%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 202.32 us (91.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (53.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.2999e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.694545658944369 (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.53 us (2.4%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 207.70 us (91.1%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 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 | 5.4632e+05 | 65536 | 2 | 1.200e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.694004631899783 (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.81 us (2.5%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 210.95 us (91.4%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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 | 5.7022e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.899431086638776 (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 : 6.04 us (2.8%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 192.18 us (90.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (50.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 | 5.6716e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.873101105074015 (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.90 us (2.5%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 220.41 us (91.6%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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 | 5.6833e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.901074358731989 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 408.516941921 (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 13.99 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.87 us (49.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 : 841.00 ns (0.2%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 406.29 us (97.6%)
LB move op cnt : 0
LB apply : 2.72 us (0.7%)
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 : 9.02 us (2.5%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.2%)
LB compute : 341.45 us (94.1%)
LB move op cnt : 0
LB apply : 2.51 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (66.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 | 2.7742e+05 | 65536 | 2 | 2.362e-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 = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.16 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 365.48 us (94.7%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 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.9871e+05 | 65536 | 2 | 1.314e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2523342802178865 (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.89 us (1.9%)
patch tree reduce : 2.39 us (0.8%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 288.78 us (93.1%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (56.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 | 5.7438e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.594050889100621 (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 : 6.01 us (2.1%)
patch tree reduce : 2.26 us (0.8%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 269.54 us (92.7%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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.9665e+05 | 65536 | 2 | 1.320e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.243010961144926 (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.63 us (2.1%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 249.78 us (92.6%)
LB move op cnt : 0
LB apply : 3.68 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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 | 5.8841e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6574400773680487 (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.45 us (2.2%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 230.81 us (91.8%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (53.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.3266e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9540019335706027 (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.32 us (1.9%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 254.68 us (92.9%)
LB move op cnt : 0
LB apply : 3.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (53.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.1864e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.890691930429331 (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.78 us (2.2%)
patch tree reduce : 2.20 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 242.42 us (92.3%)
LB move op cnt : 0
LB apply : 3.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (52.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.3126e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.947697406983883 (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.48 us (2.1%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 241.38 us (92.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (55.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.2235e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9074747385234594 (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.33 us (2.0%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 248.78 us (92.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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.2024e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8979173658575448 (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.50 us (2.3%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 218.40 us (91.6%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.2814e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.933625406339752 (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.65 us (2.4%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 211.66 us (91.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (53.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.2329e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9116860350916651 (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.40 us (2.3%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 216.53 us (91.8%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 | 4.1478e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8732873574073332 (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.12 us (2.1%)
patch tree reduce : 2.36 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 222.71 us (91.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (51.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.2821e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9339355412625812 (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.30 us (2.2%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 222.36 us (91.8%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (59.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.3050e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9442723475422774 (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.47 us (2.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 212.81 us (91.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 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.2578e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9229270045060338 (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.64 us (2.4%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 217.43 us (91.4%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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.1861e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8905563453091587 (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.22 us (2.4%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 200.21 us (91.4%)
LB move op cnt : 0
LB apply : 2.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.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.1242e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8625882878110827 (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 : 8.13 us (3.5%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 210.38 us (90.4%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (59.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.2386e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.914257252299348 (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.50 us (2.1%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 242.12 us (92.4%)
LB move op cnt : 0
LB apply : 3.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.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.1624e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8798636587139614 (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.61 us (1.9%)
patch tree reduce : 2.24 us (0.8%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 278.35 us (93.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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.2347e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9125134133650032 (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.12 us (2.0%)
patch tree reduce : 2.32 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 234.19 us (92.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.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.2743e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9304038099574512 (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.02 us (2.1%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 220.49 us (91.5%)
LB move op cnt : 0
LB apply : 4.01 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (55.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.2470e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9180783461239488 (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.37 us (1.8%)
patch tree reduce : 2.07 us (0.7%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 279.44 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.08 us (54.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.2540e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9212514055269845 (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.64 us (2.2%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 234.90 us (92.2%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (55.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.2937e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9391735728525599 (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.24 us (2.3%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 206.67 us (91.4%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (52.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.2714e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9290952238262389 (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.38 us (2.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 208.67 us (91.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (54.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.1657e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.881341583945464 (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 (2.4%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 208.57 us (91.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.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 | 5.9984e+05 | 65536 | 2 | 1.093e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7090693017219993 (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.65 us (2.5%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 207.12 us (91.0%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (56.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.2907e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9378039108336131 (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.49 us (2.0%)
patch tree reduce : 2.37 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 261.08 us (92.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.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.2359e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9130612380872711 (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.26 us (2.3%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 211.89 us (91.6%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.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.2266e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9088437886065563 (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.86 us (2.3%)
patch tree reduce : 2.36 us (0.9%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 236.34 us (92.2%)
LB move op cnt : 0
LB apply : 3.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.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.1315e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8659099611249126 (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.59 us (2.5%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 206.34 us (91.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.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.2832e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9344348188804183 (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.32 us (2.3%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 208.89 us (91.6%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.1814e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8884537475730918 (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.74 us (2.2%)
patch tree reduce : 2.46 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 242.22 us (92.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 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.1883e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8915637286844174 (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.29 us (1.7%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 291.67 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.03 us (58.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.2415e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9155991872399765 (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.58 us (2.2%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 236.69 us (92.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (53.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.3379e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9591091135712162 (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.79 us (2.5%)
patch tree reduce : 2.61 us (1.2%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 206.77 us (91.0%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (51.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.3289e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9550783430011676 (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 : 6.15 us (2.7%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 208.71 us (90.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (49.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.2869e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9361081346127993 (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.43 us (2.4%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 208.11 us (91.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (57.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.3350e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.957832158146018 (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.35 us (1.9%)
patch tree reduce : 2.41 us (0.9%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 257.70 us (92.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.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.3585e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9684177802613918 (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.73 us (2.2%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 238.24 us (92.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.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.3323e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.956587170420091 (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.50 us (2.0%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 255.08 us (92.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.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.1145e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8582331376331942 (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.56 us (2.4%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 215.93 us (91.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.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.3229e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9523628364429484 (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.61 us (2.2%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 238.58 us (92.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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 | 4.2463e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9177434289546718 (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.49 us (2.2%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 225.88 us (91.9%)
LB move op cnt : 0
LB apply : 3.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.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.2617e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.924718868787169 (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 : 6.18 us (2.2%)
patch tree reduce : 2.31 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 253.82 us (92.3%)
LB move op cnt : 0
LB apply : 3.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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.3513e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9651930012380068 (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.43 us (2.2%)
patch tree reduce : 2.40 us (1.0%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 222.07 us (91.7%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.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.3179e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9500988174367524 (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.68 us (1.9%)
patch tree reduce : 2.33 us (0.8%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 277.03 us (93.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.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.3412e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9605965991490226 (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.59 us (2.3%)
patch tree reduce : 2.34 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 224.10 us (91.8%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (51.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.3549e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9668015072854104 (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.62 us (2.2%)
patch tree reduce : 2.28 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 238.48 us (92.3%)
LB move op cnt : 0
LB apply : 3.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (59.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.2913e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.938066033503593 (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 : 7.65 us (3.2%)
patch tree reduce : 2.89 us (1.2%)
gen split merge : 1.71 us (0.7%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 216.33 us (89.9%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.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.3437e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9617408254970805 (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.40 us (2.1%)
patch tree reduce : 2.33 us (0.9%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 240.96 us (92.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (53.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.3352e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9578944135074356 (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.57 us (2.2%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 236.93 us (92.4%)
LB move op cnt : 0
LB apply : 3.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (53.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.3651e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9714074918474909 (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.55 us (2.4%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 209.40 us (91.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.98 us (93.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 | 5.9562e+05 | 65536 | 2 | 1.100e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6899968819082933 (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.66 us (2.2%)
patch tree reduce : 2.29 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 236.92 us (92.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.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 | 5.0949e+05 | 65536 | 2 | 1.286e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.300996150108683 (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.69 us (2.1%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 250.71 us (92.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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 | 5.3544e+05 | 65536 | 2 | 1.224e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4181851400835215 (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.78 us (2.4%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 221.61 us (91.7%)
LB move op cnt : 0
LB apply : 2.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.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 | 5.9405e+05 | 65536 | 2 | 1.103e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.68291171911329 (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.37 us (2.5%)
patch tree reduce : 2.33 us (1.1%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 196.41 us (90.6%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (53.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 | 5.8983e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.663828849049094 (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.65 us (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 222.37 us (91.7%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.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 | 5.9948e+05 | 65536 | 2 | 1.093e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.707428343154079 (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 : 17.24 us (7.6%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 195.29 us (86.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (51.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 | 6.0709e+05 | 65536 | 2 | 1.080e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7417791001413967 (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.91 us (2.7%)
patch tree reduce : 2.46 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 199.94 us (90.8%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.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 | 6.0341e+05 | 65536 | 2 | 1.086e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.725171899382797 (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.47 us (2.3%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 221.68 us (91.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (52.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 | 6.0274e+05 | 65536 | 2 | 1.087e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7221477000044763 (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.36 us (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 216.80 us (91.8%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.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 | 5.9742e+05 | 65536 | 2 | 1.097e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.698131949885476 (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.58 us (2.5%)
patch tree reduce : 2.36 us (1.1%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 204.17 us (91.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.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 | 6.0326e+05 | 65536 | 2 | 1.086e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7245098969372106 (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.56 us (2.3%)
patch tree reduce : 2.22 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 220.30 us (91.8%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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 | 6.0679e+05 | 65536 | 2 | 1.080e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7404578119916643 (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.45 us (2.6%)
patch tree reduce : 2.51 us (1.2%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 191.47 us (90.5%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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 | 5.9677e+05 | 65536 | 2 | 1.098e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.69516770406288 (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.10 us (2.4%)
patch tree reduce : 2.37 us (0.9%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 231.20 us (91.8%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (51.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 | 6.0310e+05 | 65536 | 2 | 1.087e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7237678784260693 (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.55 us (2.5%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 204.10 us (91.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (53.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 | 6.0411e+05 | 65536 | 2 | 1.085e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.728345871063762 (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.79 us (2.2%)
patch tree reduce : 2.32 us (0.9%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 244.41 us (92.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (43.5%)
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 | 5.9993e+05 | 65536 | 2 | 1.092e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.709461479283818 (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.47 us (2.5%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 196.53 us (91.0%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.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 | 5.8556e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6445692607664117 (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.44 us (2.3%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 219.40 us (91.6%)
LB move op cnt : 0
LB apply : 3.50 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.1%)
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 | 6.0557e+05 | 65536 | 2 | 1.082e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.73493197420185 (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.77 us (2.4%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 220.61 us (91.5%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.6%)
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 | 4.1941e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8941840145781217 (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.55 us (2.5%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 198.94 us (90.9%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.5%)
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 | 4.5284e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0451607466903092 (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.26 us (2.4%)
patch tree reduce : 2.33 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 201.28 us (91.3%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.6%)
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.4766e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0217599436819134 (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.62 us (2.6%)
patch tree reduce : 2.38 us (1.1%)
gen split merge : 1.31 us (0.6%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 198.59 us (90.6%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.8%)
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 | 4.4490e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0092777181479504 (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.98 us (2.4%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 228.56 us (91.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (58.9%)
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 | 3.5661e+05 | 65536 | 2 | 1.838e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.61057334977154 (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.36 us (2.2%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 219.90 us (91.8%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.5%)
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 | 3.8099e+05 | 65536 | 2 | 1.720e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7206745895575002 (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 : 7.08 us (2.5%)
patch tree reduce : 2.18 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 262.30 us (92.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.9%)
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 | 5.3362e+05 | 65536 | 2 | 1.228e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.409967710726226 (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.61 us (2.4%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 210.47 us (91.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.0%)
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 | 5.5237e+05 | 65536 | 2 | 1.186e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4946633812022334 (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 : 5.72 us (2.3%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 228.17 us (91.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (61.0%)
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 | 5.3028e+05 | 65536 | 2 | 1.236e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3948982311682094 (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.61 us (2.7%)
patch tree reduce : 2.36 us (1.1%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 190.06 us (90.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 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 | 5.7909e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6153429295663377 (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.58 us (2.6%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 191.15 us (90.3%)
LB move op cnt : 0
LB apply : 3.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (64.2%)
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.4128e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9929430383375617 (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.21 us (2.2%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 217.98 us (91.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (53.5%)
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.5542e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.056827079416194 (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.51 us (2.4%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 208.48 us (91.4%)
LB move op cnt : 0
LB apply : 2.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (53.4%)
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.5290e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0454262162479617 (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.36 us (2.4%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 201.94 us (91.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.9%)
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.0485e+05 | 65536 | 2 | 1.619e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.82843575203432 (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 : 5.63 us (2.5%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 207.47 us (90.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (52.8%)
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.5340e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0476945646187166 (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.55 us (2.5%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 205.38 us (91.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (52.4%)
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.6452e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.097893369074844 (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.59 us (2.7%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 189.06 us (90.7%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (49.8%)
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 | 5.8997e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6644652906235176 (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.23 us (2.6%)
patch tree reduce : 2.27 us (1.1%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 184.26 us (90.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (59.3%)
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 | 5.9434e+05 | 65536 | 2 | 1.103e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6842125881925987 (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.84 us (2.8%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 191.39 us (90.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (61.4%)
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.9138e+05 | 65536 | 2 | 1.334e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2192310810158262 (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.32 us (2.0%)
patch tree reduce : 2.29 us (0.9%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 245.11 us (92.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (61.7%)
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 | 5.8016e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6201874626689383 (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.69 us (2.0%)
patch tree reduce : 2.27 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 265.65 us (92.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (57.9%)
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.7633e+05 | 65536 | 2 | 1.376e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1512508287015653 (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.31 us (2.2%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 222.74 us (91.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.7%)
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.5953e+05 | 65536 | 2 | 1.426e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0753934122544933 (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.27 us (2.3%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 204.76 us (91.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.9%)
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 | 5.9915e+05 | 65536 | 2 | 1.094e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7059497455408947 (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.41 us (2.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 208.42 us (90.4%)
LB move op cnt : 0
LB apply : 3.79 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.3%)
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 | 5.8579e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.645620031042884 (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.76 us (2.5%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 209.91 us (91.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (54.5%)
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.3238e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9527494801206429 (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.37 us (2.2%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 220.06 us (91.8%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.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 | 4.3121e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9474601244696863 (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.50 us (2.2%)
patch tree reduce : 2.54 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 232.28 us (91.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (54.2%)
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 | 4.2242e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.907763028325331 (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.39 us (2.4%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 206.86 us (91.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (60.5%)
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.1673e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8820857306592849 (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.33 us (2.2%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 219.29 us (92.0%)
LB move op cnt : 0
LB apply : 2.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (54.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.2231e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9072831182230798 (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.89 us (2.2%)
patch tree reduce : 7.77 us (2.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 247.46 us (90.6%)
LB move op cnt : 0
LB apply : 3.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.3%)
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.3786e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9775088782668127 (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.34 us (2.3%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 215.00 us (91.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (56.7%)
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.3171e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9497271570120405 (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 : 5.73 us (2.4%)
patch tree reduce : 2.21 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 214.61 us (91.4%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.7%)
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.2922e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9384788503659487 (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.27 us (2.1%)
patch tree reduce : 2.48 us (1.0%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 226.25 us (92.0%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (59.4%)
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.2014e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8974591983964066 (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.86 us (2.5%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 217.40 us (91.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.8%)
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 | 4.2614e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9245958315972422 (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.49 us (1.9%)
patch tree reduce : 2.45 us (0.9%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 265.97 us (93.0%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.5%)
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 | 4.2325e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9115119900701554 (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.34 us (2.2%)
patch tree reduce : 2.40 us (1.0%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 224.80 us (92.0%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (51.8%)
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 | 4.2253e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.908280792107444 (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.57 us (2.2%)
patch tree reduce : 2.33 us (0.9%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 237.80 us (92.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.1%)
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 | 4.3248e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9532119243210064 (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.76 us (2.1%)
patch tree reduce : 2.34 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 260.05 us (92.7%)
LB move op cnt : 0
LB apply : 3.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.6%)
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.3411e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9605673486743695 (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.36 us (1.9%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 269.66 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.09 us (55.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.2976e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9409367427050592 (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 : 5.54 us (1.9%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 266.13 us (93.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (51.9%)
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.3514e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9652727235635483 (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 : 17.36 us (6.4%)
patch tree reduce : 2.17 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 238.18 us (88.2%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.6%)
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.1888e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8918347541488754 (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.40 us (2.3%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 211.19 us (91.4%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.2%)
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.2159e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9040751540685885 (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.71 us (2.0%)
patch tree reduce : 2.35 us (0.8%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 266.60 us (92.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.2%)
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.3708e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9740448408593962 (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.77 us (2.2%)
patch tree reduce : 2.30 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 241.03 us (92.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (51.9%)
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.3133e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9481072290261428 (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 : 5.76 us (2.2%)
patch tree reduce : 2.35 us (0.9%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 238.02 us (92.1%)
LB move op cnt : 0
LB apply : 3.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.3%)
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 | 4.2600e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9240838673116485 (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.34 us (1.9%)
patch tree reduce : 2.23 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 259.44 us (92.9%)
LB move op cnt : 0
LB apply : 3.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (61.2%)
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 | 4.1881e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8916234690287574 (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.51 us (2.4%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 208.58 us (91.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (57.4%)
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.2414e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9157780256364239 (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.74 us (2.0%)
patch tree reduce : 2.32 us (0.8%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 263.15 us (92.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (62.5%)
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 | 4.2840e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9350579177800775 (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 : 5.90 us (2.6%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 207.28 us (91.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (46.3%)
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.8486e+05 | 65536 | 2 | 1.703e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7384406453680452 (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 : 6.04 us (2.1%)
patch tree reduce : 14.25 us (5.0%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 252.16 us (88.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (46.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 | 4.1740e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8855287909516036 (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 : 6.13 us (2.3%)
patch tree reduce : 2.32 us (0.9%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 245.29 us (91.6%)
LB move op cnt : 0
LB apply : 3.64 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (51.2%)
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 | 4.1828e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8895786602802218 (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.21 us (2.1%)
patch tree reduce : 2.30 us (0.9%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 223.05 us (91.9%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.2%)
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 | 4.1838e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8901800857507338 (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 : 5.69 us (1.8%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 293.34 us (93.3%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (60.7%)
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 | 4.1609e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8799641236020277 (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 : 5.35 us (2.0%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 245.14 us (92.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (59.2%)
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 | 4.2104e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9025058849763494 (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.67 us (1.9%)
patch tree reduce : 2.37 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 271.55 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.33 us (57.8%)
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 | 4.1185e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.861144902551682 (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.45 us (2.3%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 221.65 us (91.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (51.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 | 4.2268e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9103503246990192 (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.24 us (2.2%)
patch tree reduce : 2.40 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 219.64 us (91.8%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.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 | 4.1718e+05 | 65536 | 2 | 1.571e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8857431553923958 (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 : 5.18 us (2.2%)
patch tree reduce : 2.27 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 220.88 us (91.9%)
LB move op cnt : 0
LB apply : 2.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (57.1%)
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 | 4.1710e+05 | 65536 | 2 | 1.571e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8856998865445553 (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.67 us (2.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 221.67 us (91.7%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (52.1%)
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 | 4.2245e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9102406139486123 (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.49 us (2.3%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 221.30 us (92.0%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (53.0%)
Info: cfl dt = 8.23551897177891e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2173e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.90738635262679 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010771073801438545, dt = 8.23551897177891e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 221.61 us (91.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (51.6%)
Info: cfl dt = 8.237811431250032e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9095717838649922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010853428991156334, dt = 8.237811431250032e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 251.84 us (92.8%)
LB move op cnt : 0
LB apply : 3.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.0%)
Info: cfl dt = 8.240397751834096e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1888e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8955210376217275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010935807105468834, dt = 8.240397751834096e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.39 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 200.70 us (90.9%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (52.5%)
Info: cfl dt = 8.243302296144366e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6045e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.084274342619343 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011018211082987174, dt = 8.243302296144366e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.27 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 255.25 us (92.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.9%)
Info: cfl dt = 8.2465497677256e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7387e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5985662058484715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011100644105948618, dt = 8.2465497677256e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.41 us (1.2%)
gen split merge : 1.13 us (0.6%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 185.78 us (90.3%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (55.3%)
Info: cfl dt = 8.250165039112757e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0968268858132437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011183109603625873, dt = 8.250165039112757e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.45 us (1.1%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 205.45 us (90.8%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (52.5%)
Info: cfl dt = 8.254172975792787e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6192e+05 | 65536 | 2 | 1.419e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.093408155986626 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011265611254017, dt = 8.254172975792787e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.21 us (1.1%)
gen split merge : 1.13 us (0.6%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 179.63 us (90.2%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (54.3%)
Info: cfl dt = 8.258598259313786e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1295e+05 | 65536 | 2 | 1.069e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7792231360234223 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011348152983774928, dt = 8.258598259313786e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.44 us (1.0%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 221.36 us (91.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (61.3%)
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 | 5.9009e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.676993955358738 (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.83 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.20 us (0.4%)
LB compute : 294.47 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.37 us (60.4%)
Info: cfl dt = 8.26879763148643e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9023e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.679204325566683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011513373618495444, dt = 8.26879763148643e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 221.94 us (91.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.0%)
Info: cfl dt = 8.27461862239501e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8342e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.650004287640945 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011596061594810308, dt = 8.27461862239501e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 219.53 us (91.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (48.9%)
Info: cfl dt = 8.280950453479281e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0852098315211425 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011678807781034257, dt = 8.280950453479281e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 220.34 us (91.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (60.1%)
Info: cfl dt = 8.287814416555486e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.01829522986013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01176161728556905, dt = 8.287814416555486e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 232.37 us (92.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.3%)
Info: cfl dt = 8.295230704445564e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7932e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6374253223781854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011844495429734604, dt = 8.295230704445564e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.46 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 222.52 us (80.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.9%)
Info: cfl dt = 8.30321830407229e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9927e+05 | 65536 | 2 | 1.094e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7307026896037025 (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.34 us (2.6%)
patch tree reduce : 2.19 us (1.1%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 185.48 us (89.6%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (51.4%)
Info: cfl dt = 8.310710031172253e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7176e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2787100491624317 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 455.302960126 (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 1.71 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.43 us (58.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 : 821.00 ns (0.4%)
patch tree reduce : 1.28 us (0.6%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.4%)
LB compute : 212.35 us (95.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.6%)
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.37 us (2.6%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.2%)
LB compute : 305.56 us (93.6%)
LB move op cnt : 0
LB apply : 2.74 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (52.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 | 5.0612e+05 | 65536 | 2 | 1.295e-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 = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 220.53 us (91.9%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.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 | 5.8973e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.663389060515252 (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.62 us (2.3%)
patch tree reduce : 2.34 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 226.36 us (91.7%)
LB move op cnt : 0
LB apply : 3.51 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (57.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 | 5.9357e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6807551909663196 (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.48 us (2.6%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 189.61 us (90.6%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.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 | 5.9052e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6669527004580535 (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.75 us (2.2%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 244.70 us (92.2%)
LB move op cnt : 0
LB apply : 3.78 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (58.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 | 5.9156e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.671637625251508 (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.48 us (2.3%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 221.21 us (91.9%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.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 | 5.7854e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6128761897651898 (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.18 us (2.3%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 202.33 us (91.5%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (51.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 | 5.0734e+05 | 65536 | 2 | 1.292e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2912745043906333 (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.59 us (2.5%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 202.52 us (91.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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 | 5.0697e+05 | 65536 | 2 | 1.293e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.289619533474773 (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.66 us (2.5%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 203.67 us (91.1%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (53.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 | 5.1184e+05 | 65536 | 2 | 1.280e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3116030829782277 (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.54 us (2.7%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 187.26 us (90.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.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 | 5.4681e+05 | 65536 | 2 | 1.199e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.469572815502814 (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.63 us (2.7%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 187.51 us (90.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.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 | 5.5850e+05 | 65536 | 2 | 1.173e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.522367776958618 (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.36 us (2.5%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 191.53 us (90.7%)
LB move op cnt : 0
LB apply : 3.51 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.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 | 5.4813e+05 | 65536 | 2 | 1.196e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4755127144649283 (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.62 us (2.5%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 204.54 us (91.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (52.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.4335e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0023030006672284 (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.38 us (2.0%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 253.49 us (92.8%)
LB move op cnt : 0
LB apply : 3.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (57.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.1143e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8581299770408775 (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.60 us (2.6%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 198.28 us (91.0%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.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.0665e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8365403625857344 (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.36 us (2.4%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 199.47 us (91.0%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.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.1321e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8661992471617193 (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.30 us (2.2%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 223.04 us (91.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (56.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.0779e+05 | 65536 | 2 | 1.607e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.841696592836741 (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.59 us (2.3%)
patch tree reduce : 2.41 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 217.61 us (91.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.0913e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8477654596616213 (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.30 us (2.3%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 206.85 us (91.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (58.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.1944e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.894301425578912 (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.62 us (2.3%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 224.37 us (91.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (59.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.1562e+05 | 65536 | 2 | 1.577e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8770526009289161 (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 : 9.39 us (3.8%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 225.11 us (90.2%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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.1757e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8858809306152469 (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.70 us (2.3%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 227.06 us (91.9%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (48.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.0710e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8385663132183683 (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.49 us (2.4%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 207.20 us (91.2%)
LB move op cnt : 0
LB apply : 3.40 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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.0276e+05 | 65536 | 2 | 1.627e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8189814532358548 (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.77 us (2.5%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 207.08 us (91.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.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.0344e+05 | 65536 | 2 | 1.624e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8220681580556832 (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.86 us (2.5%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 217.20 us (91.4%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (57.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.6925e+05 | 65536 | 2 | 1.397e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1192605041098203 (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.21 us (2.3%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 209.85 us (91.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (58.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 | 5.4466e+05 | 65536 | 2 | 1.203e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4598655602328905 (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.39 us (2.3%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 219.21 us (91.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.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 | 5.5056e+05 | 65536 | 2 | 1.190e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.486475033512388 (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.62 us (2.8%)
patch tree reduce : 2.18 us (1.1%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 180.51 us (90.0%)
LB move op cnt : 0
LB apply : 3.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (52.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 | 5.4425e+05 | 65536 | 2 | 1.204e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4580085033213575 (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.27 us (2.5%)
patch tree reduce : 2.22 us (1.1%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 186.87 us (90.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (74.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 | 5.4737e+05 | 65536 | 2 | 1.197e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4721004712036527 (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.72 us (1.6%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 339.03 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.13 us (57.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 | 5.4823e+05 | 65536 | 2 | 1.195e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4759620458566944 (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.55 us (2.3%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 219.92 us (91.9%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.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 | 5.4441e+05 | 65536 | 2 | 1.204e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4587131952421597 (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.75 us (2.8%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 188.41 us (90.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (57.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 | 5.6114e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5342710837053075 (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.24 us (2.5%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 192.68 us (90.9%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.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 | 5.6760e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.563436305686333 (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.40 us (2.7%)
patch tree reduce : 1.89 us (1.0%)
gen split merge : 1.13 us (0.6%)
split / merge op : 0/0
apply split merge : 1.30 us (0.7%)
LB compute : 178.77 us (90.0%)
LB move op cnt : 0
LB apply : 3.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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 | 5.4925e+05 | 65536 | 2 | 1.193e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.480576875769026 (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.75 us (2.7%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.32 us (0.6%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 191.37 us (90.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (54.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 | 5.4431e+05 | 65536 | 2 | 1.204e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.458264466893162 (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.58 us (2.6%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.51 us (0.7%)
LB compute : 197.68 us (90.6%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.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 | 5.3557e+05 | 65536 | 2 | 1.224e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4187893952729476 (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.60 us (2.6%)
patch tree reduce : 2.28 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 191.76 us (90.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.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 | 5.4609e+05 | 65536 | 2 | 1.200e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4662998865841512 (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.47 us (2.2%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 231.34 us (92.1%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.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 | 5.2544e+05 | 65536 | 2 | 1.247e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3730621851649905 (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.29 us (2.3%)
patch tree reduce : 2.35 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 206.94 us (91.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (54.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 | 5.4319e+05 | 65536 | 2 | 1.206e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.453220754816198 (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.25 us (2.3%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 209.22 us (91.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (47.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 | 5.4506e+05 | 65536 | 2 | 1.202e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.461638308644002 (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.83 us (2.3%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 232.00 us (91.9%)
LB move op cnt : 0
LB apply : 3.66 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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 | 5.6059e+05 | 65536 | 2 | 1.169e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5318006299139264 (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.80 us (2.5%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 216.70 us (91.6%)
LB move op cnt : 0
LB apply : 3.46 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.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 | 5.5209e+05 | 65536 | 2 | 1.187e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4933986629838443 (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.09 us (2.3%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 204.93 us (91.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 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 | 5.6209e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5385527472110727 (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.56 us (2.2%)
patch tree reduce : 2.22 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 228.16 us (91.8%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (50.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 | 5.6198e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5380766044540444 (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.56 us (2.7%)
patch tree reduce : 2.26 us (1.1%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 188.87 us (90.5%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (50.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 | 5.5620e+05 | 65536 | 2 | 1.178e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5119542666769052 (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.52 us (2.7%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 187.99 us (90.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 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 | 5.6028e+05 | 65536 | 2 | 1.170e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5303666708400834 (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.46 us (2.2%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 228.75 us (91.9%)
LB move op cnt : 0
LB apply : 3.60 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (58.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.2248e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.90804674034814 (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.65 us (2.2%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 237.76 us (92.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.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 | 5.7714e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6065370141350215 (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.57 us (2.7%)
patch tree reduce : 2.20 us (1.1%)
gen split merge : 941.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 187.43 us (90.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.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 | 5.6452e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5495427022704833 (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.49 us (2.3%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 221.96 us (91.9%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (52.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 | 5.3543e+05 | 65536 | 2 | 1.224e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4181522059158045 (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.45 us (2.5%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 234.04 us (91.7%)
LB move op cnt : 0
LB apply : 3.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.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 | 5.7476e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5957626900541646 (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.83 us (2.5%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 212.56 us (91.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (58.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.8083e+05 | 65536 | 2 | 1.363e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1715537896741512 (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.96 us (2.9%)
patch tree reduce : 2.17 us (1.1%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 185.12 us (90.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (56.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 | 5.8564e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6449136293421365 (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.32 us (2.2%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 221.59 us (91.7%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.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.8923e+05 | 65536 | 2 | 1.340e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2095081385020325 (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.74 us (2.4%)
patch tree reduce : 2.40 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 222.72 us (91.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (55.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 | 5.6719e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5615948134189033 (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.54 us (2.8%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 216.28 us (91.1%)
LB move op cnt : 0
LB apply : 3.56 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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 | 5.6424e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.548264128882243 (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.73 us (2.7%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 193.38 us (90.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (48.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 | 5.7901e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6149918702397277 (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.28 us (2.6%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 184.92 us (90.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (50.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 | 5.7549e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.599096577118133 (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.76 us (2.3%)
patch tree reduce : 2.37 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 226.42 us (91.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.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 | 5.6685e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5600476419912033 (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.45 us (2.6%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 188.92 us (90.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (52.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 | 5.6230e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.539497615931212 (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 : 6.37 us (2.8%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 208.68 us (90.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (59.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 | 5.7544e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5988485090653715 (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.64 us (2.7%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 190.87 us (90.5%)
LB move op cnt : 0
LB apply : 3.44 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.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 | 5.7769e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.609021184828365 (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.41 us (2.6%)
patch tree reduce : 2.27 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 192.16 us (90.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (55.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 | 5.7099e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5787413201313667 (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.72 us (2.7%)
patch tree reduce : 2.29 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 191.73 us (90.3%)
LB move op cnt : 0
LB apply : 3.62 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (56.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 | 5.7399e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5922919618640003 (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.63 us (2.5%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 208.10 us (91.3%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (44.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 | 5.7098e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5787206277909096 (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.33 us (2.2%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 226.00 us (92.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.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 | 5.7225e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5844586967689076 (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.14 us (2.5%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 187.66 us (90.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.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 | 5.6852e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.567598001573321 (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.60 us (2.8%)
patch tree reduce : 2.24 us (1.1%)
gen split merge : 1.12 us (0.6%)
split / merge op : 0/0
apply split merge : 1.11 us (0.6%)
LB compute : 179.96 us (90.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (57.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 | 5.7514e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.597518649762312 (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.26 us (2.2%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 220.23 us (91.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 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 | 5.6930e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.571147311824177 (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.55 us (2.6%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 192.57 us (90.7%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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 | 5.8507e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.642367348101745 (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.29 us (2.4%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 197.56 us (90.9%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (59.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 | 5.6806e+05 | 65536 | 2 | 1.154e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.565503958001868 (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.51 us (2.4%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 211.86 us (91.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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 | 5.7379e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5914004712380674 (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.72 us (2.8%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 185.78 us (90.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.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 | 5.6321e+05 | 65536 | 2 | 1.164e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5435999184703646 (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.85 us (2.6%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 202.33 us (90.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (60.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 | 5.7096e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5786024788664106 (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.89 us (2.6%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 208.55 us (91.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (50.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 | 5.8733e+05 | 65536 | 2 | 1.116e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6525555441300908 (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.68 us (2.5%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 206.59 us (91.2%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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 | 5.8801e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.655642368806536 (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 : 6.74 us (3.0%)
patch tree reduce : 3.35 us (1.5%)
gen split merge : 1.56 us (0.7%)
split / merge op : 0/0
apply split merge : 1.67 us (0.7%)
LB compute : 204.74 us (89.7%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.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.9739e+05 | 65536 | 2 | 1.318e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2463510251311387 (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.79 us (2.6%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 205.84 us (91.0%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (56.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 | 5.7873e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6136966805006807 (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.40 us (1.9%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 257.61 us (89.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (54.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 | 5.0766e+05 | 65536 | 2 | 1.291e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2927247342607133 (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.46 us (2.6%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 191.49 us (90.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (53.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 | 5.6213e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5387434677427727 (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 (2.9%)
patch tree reduce : 2.06 us (1.1%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 176.63 us (89.9%)
LB move op cnt : 0
LB apply : 2.96 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.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 | 5.7433e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5938393117447665 (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.75 us (2.4%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 218.83 us (91.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.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.9845e+05 | 65536 | 2 | 1.315e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2511475520390154 (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.28 us (2.6%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 182.78 us (90.4%)
LB move op cnt : 0
LB apply : 3.20 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.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.3640e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.970906561509604 (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.74 us (2.3%)
patch tree reduce : 2.32 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 233.72 us (92.1%)
LB move op cnt : 0
LB apply : 3.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (57.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.1337e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8668911019231955 (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.29 us (2.4%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.33 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 203.81 us (91.1%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.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.3567e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9675930663340317 (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.52 us (2.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 214.50 us (91.7%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (52.2%)
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.1925e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8934463374427821 (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.48 us (2.4%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 210.13 us (91.4%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (57.3%)
Info: cfl dt = 8.221661412416747e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.976378521206931 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007070628814678405, dt = 8.221661412416747e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 206.17 us (91.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (57.3%)
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.4089e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9912004923485045 (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.77 us (2.5%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 212.22 us (91.3%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.2%)
Info: cfl dt = 8.221661412416779e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9897779535796516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007235062042926741, dt = 8.221661412416779e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.30 us (0.6%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 189.50 us (90.7%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (53.8%)
Info: cfl dt = 8.221661412416825e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2089e+05 | 65536 | 2 | 1.258e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.352506842104994 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0073172786570509084, dt = 8.221661412416825e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 212.73 us (91.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (57.8%)
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 | 5.9799e+05 | 65536 | 2 | 1.096e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7007052729347443 (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.56 us (2.7%)
patch tree reduce : 2.24 us (1.1%)
gen split merge : 1.14 us (0.6%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 187.44 us (90.4%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (51.0%)
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 | 5.8590e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.646099494128794 (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.60 us (2.7%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 188.81 us (90.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (54.2%)
Info: cfl dt = 8.221661412417462e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9067e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6676529019487822 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007563928499423418, dt = 8.221661412417462e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 194.36 us (90.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (54.7%)
Info: cfl dt = 8.221661412418164e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9814e+05 | 65536 | 2 | 1.096e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.701382901630159 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007646145113547592, dt = 8.221661412418164e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 211.01 us (91.4%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.6%)
Info: cfl dt = 8.221661412419506e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7700e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6058789173691705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007728361727671774, dt = 8.221661412419506e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.19 us (1.1%)
gen split merge : 921.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 182.95 us (90.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (57.8%)
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 | 6.0264e+05 | 65536 | 2 | 1.087e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7217013600478777 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0078105783417959694, 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.55 us (2.6%)
patch tree reduce : 2.33 us (1.1%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 190.28 us (90.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.3%)
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 | 6.0040e+05 | 65536 | 2 | 1.092e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.711572740652975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00789279495592019, 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 : 16.59 us (6.2%)
patch tree reduce : 2.13 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 238.55 us (88.4%)
LB move op cnt : 0
LB apply : 3.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.5%)
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 | 5.9119e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.669997199806063 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007975011570044458, 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.37 us (2.4%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 208.52 us (91.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (54.7%)
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 | 5.9879e+05 | 65536 | 2 | 1.094e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7043333900064543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008057228184168812, 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 : 5.69 us (2.3%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 232.00 us (91.9%)
LB move op cnt : 0
LB apply : 3.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (58.4%)
Info: cfl dt = 8.221661412479191e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9318e+05 | 65536 | 2 | 1.105e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6789660854084887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008139444798293323, dt = 8.221661412479191e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.52 us (1.2%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 186.68 us (90.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (50.5%)
Info: cfl dt = 8.221661412528905e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4881e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.026942803108581 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008221661412418115, dt = 8.221661412528905e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 193.36 us (86.0%)
LB move op cnt : 0
LB apply : 15.11 us (6.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.4%)
Info: cfl dt = 8.221661412615829e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8265e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.631409960473976 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008303878026543404, dt = 8.221661412615829e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 198.60 us (91.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (49.7%)
Info: cfl dt = 8.221661412766082e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8623e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.647582024748994 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008386094640669561, dt = 8.221661412766082e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 191.97 us (90.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (61.7%)
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 | 5.8602e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6466293400267125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008468311254797222, 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.44 us (2.4%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 210.69 us (91.6%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (62.6%)
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 | 5.9224e+05 | 65536 | 2 | 1.107e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6747429188316083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008550527868927451, 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.30 us (2.5%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 193.44 us (90.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.3%)
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.8031e+05 | 65536 | 2 | 1.364e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.169205136304457 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008632744483062022, 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.41 us (1.9%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 1.37 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 261.81 us (92.8%)
LB move op cnt : 0
LB apply : 3.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (61.2%)
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 | 5.8004e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6196139423186833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008714961097203856, 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.49 us (1.9%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 272.22 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.21 us (59.3%)
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 | 5.5376e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5009363811070173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008797177711357716, 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 : 5.48 us (2.4%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 212.84 us (91.5%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.3%)
Info: cfl dt = 8.221661420553328e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8392e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6371762290070766 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008879394325531278, dt = 8.221661420553328e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 219.40 us (91.8%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (51.5%)
Info: cfl dt = 8.22166142569027e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7238e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.585057770854472 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008961610939736811, dt = 8.22166142569027e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 224.47 us (91.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.4%)
Info: cfl dt = 8.221661433866075e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8171e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6271566306389365 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009043827553993713, dt = 8.221661433866075e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 197.62 us (90.8%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.4%)
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 | 5.8494e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6417808540008654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009126044168332374, 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.62 us (2.7%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 184.92 us (90.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (57.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 | 5.8403e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.637668385248098 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009208260782799951, 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.78 us (2.3%)
patch tree reduce : 2.51 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 228.25 us (91.7%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 | 5.4944e+05 | 65536 | 2 | 1.193e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4814220222899537 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009290477397468955, 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.51 us (2.7%)
patch tree reduce : 1.83 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 183.53 us (90.6%)
LB move op cnt : 0
LB apply : 3.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.1%)
Info: cfl dt = 8.221661545972301e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4564e+05 | 65536 | 2 | 1.201e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4642686559344167 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00937269401244988, dt = 8.221661545972301e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 249.36 us (92.6%)
LB move op cnt : 0
LB apply : 3.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (58.5%)
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 | 5.8389e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.636997891540799 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009454910627909603, 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 : 5.47 us (2.5%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 203.41 us (91.4%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (51.8%)
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.4588e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.013737033392129 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009537127244097979, 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.62 us (2.7%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 190.09 us (90.7%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.3%)
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.4322e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0017021189564437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009619343861385903, 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.37 us (2.5%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 195.24 us (90.8%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.4%)
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.5162e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0396325558287125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00970156048031933, 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 : 17.96 us (7.8%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 197.27 us (86.2%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.6%)
Info: cfl dt = 8.22166249724854e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6577e+05 | 65536 | 2 | 1.407e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1035551904188443 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009783777101695266, dt = 8.22166249724854e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 233.77 us (92.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.3%)
Info: cfl dt = 8.221663022665313e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.0051e+05 | 65536 | 2 | 1.309e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2604595214634813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00986599372666775, dt = 8.221663022665313e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1.82 us (0.9%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 187.07 us (90.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (60.3%)
Info: cfl dt = 8.221663784295376e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2025e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.897964301351716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009948210356894404, dt = 8.221663784295376e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 208.77 us (91.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.3%)
Info: cfl dt = 8.221664879909286e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9729536491955166 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010030426994737357, dt = 8.221664879909286e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 222.59 us (92.0%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.2%)
Info: cfl dt = 8.221666444111893e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0004463573902633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010112643643536449, dt = 8.221666444111893e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 251.62 us (92.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.9%)
Info: cfl dt = 8.221668660760118e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9408954498127176 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010194860307977569, dt = 8.221668660760118e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 229.17 us (92.2%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (53.5%)
Info: cfl dt = 8.221671779023682e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9962488349223022 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01027707699458517, dt = 8.221671779023682e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 204.00 us (91.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.9%)
Info: cfl dt = 8.221676133970352e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4270e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9993679145601309 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010359293712375407, dt = 8.221676133970352e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 207.00 us (91.3%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (52.7%)
Info: cfl dt = 8.221682172710616e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9885322650909232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010441510473715112, dt = 8.221682172710616e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 206.96 us (91.3%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.9%)
Info: cfl dt = 8.221690487298302e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2718e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.929270263259389 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010523727295442218, dt = 8.221690487298302e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 209.65 us (91.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.1%)
Info: cfl dt = 8.221701855747678e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3316e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9562792455331264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010605944200315201, dt = 8.221701855747678e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.19 us (0.8%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 238.30 us (92.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (60.0%)
Info: cfl dt = 8.221717292685505e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2220e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9067950779032838 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010688161218872679, dt = 8.221717292685505e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.24 us (1.1%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 188.42 us (90.4%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (53.3%)
Info: cfl dt = 8.221738111297748e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8106e+05 | 65536 | 2 | 1.362e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.172615782734872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010770378391799534, dt = 8.221738111297748e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 213.52 us (91.7%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.1%)
Info: cfl dt = 8.221765998341062e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8009e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6198788123768817 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010852595772912511, dt = 8.221765998341062e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.98 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 258.44 us (93.0%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (59.3%)
Info: cfl dt = 8.221803104052213e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9121e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6701294147347685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010934813432895922, dt = 8.221803104052213e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 225.41 us (91.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.1%)
Info: cfl dt = 8.221852148784647e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9597e+05 | 65536 | 2 | 1.100e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.691628621414036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011017031463936445, dt = 8.221852148784647e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.10 us (1.1%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 176.79 us (89.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.6%)
Info: cfl dt = 8.221916548108693e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0374e+05 | 65536 | 2 | 1.086e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.726719596115658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011099249985424291, dt = 8.221916548108693e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 209.25 us (87.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.3%)
Info: cfl dt = 8.222000557907172e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9765e+05 | 65536 | 2 | 1.097e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.699257876493973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011181469150905378, dt = 8.222000557907172e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 224.55 us (91.9%)
LB move op cnt : 0
LB apply : 3.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.3%)
Info: cfl dt = 8.222109440657942e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9367e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6812909068420887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011263689156484449, dt = 8.222109440657942e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.36 us (0.9%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 236.51 us (92.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (59.1%)
Info: cfl dt = 8.222249653597404e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6346e+05 | 65536 | 2 | 1.414e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0932185659385367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01134591025089103, dt = 8.222249653597404e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 220.32 us (91.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.9%)
Info: cfl dt = 8.222429058786047e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2946e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9397194959337654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011428132747427003, dt = 8.222429058786047e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 204.93 us (90.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.7%)
Info: cfl dt = 8.222657154237287e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.957527885647548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011510357038014863, dt = 8.222657154237287e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 207.89 us (91.0%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (60.5%)
Info: cfl dt = 8.222945324222084e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2644e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9261637767162665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011592583609557236, dt = 8.222945324222084e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 207.59 us (91.4%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.0%)
Info: cfl dt = 8.22330710563472e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3496e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9647013874489665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011674813062799458, dt = 8.22330710563472e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 208.56 us (91.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.0%)
Info: cfl dt = 8.223758465925949e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.934483441139765 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011757046133855805, dt = 8.223758465925949e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 226.10 us (91.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (60.1%)
Info: cfl dt = 8.224318086622749e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9572743929691103 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011839283718515064, dt = 8.224318086622749e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.33 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 208.19 us (91.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.6%)
Info: cfl dt = 8.225007644922806e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9491492993778883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011921526899381292, dt = 7.847310061870859e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 208.39 us (91.3%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (54.1%)
Info: cfl dt = 8.225804765303371e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3700e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8837664824878286 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 474.253090668 (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.58 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.60 us (58.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 : 902.00 ns (0.3%)
patch tree reduce : 1.18 us (0.4%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 264.27 us (96.3%)
LB move op cnt : 0
LB apply : 3.05 us (1.1%)
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 : 9.53 us (3.5%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.3%)
LB compute : 248.59 us (91.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.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 | 5.9572e+05 | 65536 | 2 | 1.100e-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 = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 216.34 us (91.7%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (52.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 | 5.8340e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6348051903309915 (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.48 us (1.9%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 272.67 us (93.3%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (54.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 | 5.7341e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.589699062016162 (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.28 us (2.3%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 205.05 us (91.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (53.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 | 5.9639e+05 | 65536 | 2 | 1.099e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.69347821443122 (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.44 us (2.8%)
patch tree reduce : 1.97 us (1.0%)
gen split merge : 1.09 us (0.6%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 177.96 us (90.3%)
LB move op cnt : 0
LB apply : 3.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.70 us (93.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.7926e+05 | 65536 | 2 | 1.367e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1645009395160075 (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.51 us (2.3%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 218.59 us (91.8%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.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.9872e+05 | 65536 | 2 | 1.314e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2523834037134662 (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.49 us (2.6%)
patch tree reduce : 1.83 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 190.48 us (90.7%)
LB move op cnt : 0
LB apply : 2.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (52.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 | 5.0832e+05 | 65536 | 2 | 1.289e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2957239747724185 (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.55 us (2.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 211.06 us (91.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (56.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 | 6.0590e+05 | 65536 | 2 | 1.082e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.736404275089429 (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.22 us (2.1%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 229.13 us (92.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (66.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.8909e+05 | 65536 | 2 | 1.340e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2088785230219052 (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.16 us (2.6%)
patch tree reduce : 1.79 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 181.33 us (90.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.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 | 5.0592e+05 | 65536 | 2 | 1.295e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2848616697250073 (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.32 us (2.5%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 191.67 us (90.7%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (57.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 | 5.8894e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.659839951069648 (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.20 us (2.1%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 230.79 us (92.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.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.1007e+05 | 65536 | 2 | 1.598e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8519822185253347 (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.52 us (2.4%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 208.86 us (91.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (52.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.1893e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.891997982193554 (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.21 us (2.0%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 238.92 us (92.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.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.2579e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.923011372808813 (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.61 us (2.5%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.31 us (0.6%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 208.37 us (91.3%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (50.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.3558e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9672174536565235 (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 (2.1%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 218.61 us (92.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (54.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.2821e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9339218940928764 (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.35 us (2.3%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 209.09 us (91.6%)
LB move op cnt : 0
LB apply : 2.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (52.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.3492e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9642199360925492 (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.32 us (2.4%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 205.91 us (91.3%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (52.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.3715e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9743134363461778 (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.36 us (2.5%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 991.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 195.67 us (90.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.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.4442e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.007146340998991 (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.56 us (2.2%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 233.29 us (92.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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.1991e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8964191622815925 (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.29 us (2.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 197.38 us (91.0%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (59.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 | 5.6916e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.570481177718165 (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.49 us (2.4%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 204.60 us (91.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.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 | 5.9376e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6815970554835316 (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.96 us (2.5%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 214.72 us (91.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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 | 5.9300e+05 | 65536 | 2 | 1.105e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6781745074487784 (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.40 us (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 193.97 us (90.9%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.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 | 5.8333e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6344880938116417 (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.40 us (2.3%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 218.51 us (91.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (54.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 | 5.7608e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6017514712985395 (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.32 us (2.2%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 218.09 us (91.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.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 | 5.3035e+05 | 65536 | 2 | 1.236e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3952126827054077 (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.74 us (2.7%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 192.96 us (90.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.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 | 5.2108e+05 | 65536 | 2 | 1.258e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3533601819185836 (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.42 us (2.1%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 234.89 us (92.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (58.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.4251e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9985251016243544 (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.49 us (2.2%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 228.49 us (91.9%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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.3292e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9551789753336457 (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.49 us (2.6%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 193.21 us (90.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (52.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.3609e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9695243025300824 (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.65 us (2.5%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 203.98 us (91.4%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (54.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.4167e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9947056956850064 (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.61 us (2.5%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 207.36 us (91.3%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.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.3808e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9785053276895195 (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.29 us (2.3%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 206.64 us (91.4%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 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.7917e+05 | 65536 | 2 | 1.368e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.164053672769509 (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.42 us (2.1%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 244.43 us (92.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.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 | 5.8396e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.637325983617297 (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.61 us (2.5%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 209.49 us (91.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.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 | 5.8341e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6348369722023945 (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.95 us (2.5%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 215.12 us (91.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (54.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 | 5.8667e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.649551593649749 (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.27 us (2.1%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 234.72 us (92.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (56.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 | 5.8290e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6325305223111153 (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.57 us (2.4%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 211.66 us (91.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.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 | 5.1302e+05 | 65536 | 2 | 1.277e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3169285055118407 (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.60 us (2.6%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 197.77 us (90.8%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.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 | 5.7204e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.583497309435725 (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.41 us (2.6%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 191.72 us (90.7%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (52.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.5334e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.047408620459109 (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.97 us (2.8%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 195.17 us (90.7%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (58.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 | 5.7825e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.611566388106194 (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.73 us (2.3%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 233.78 us (92.2%)
LB move op cnt : 0
LB apply : 3.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (52.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 | 5.5622e+05 | 65536 | 2 | 1.178e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.512059798833282 (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.05 us (2.1%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 223.91 us (91.8%)
LB move op cnt : 0
LB apply : 3.49 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.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 | 5.7059e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.576931603552763 (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.44 us (2.5%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 200.33 us (91.2%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (60.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.0076e+05 | 65536 | 2 | 1.635e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8099690124215733 (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.70 us (2.4%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 218.51 us (91.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.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.1752e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8856530712828319 (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.45 us (2.3%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 218.18 us (91.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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 | 5.0464e+05 | 65536 | 2 | 1.299e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2791044538848775 (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.82 us (2.5%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 211.28 us (91.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.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 | 5.7702e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.606009353702422 (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.64 us (2.2%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 236.46 us (92.1%)
LB move op cnt : 0
LB apply : 3.56 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.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 | 5.6631e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5576224624948125 (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.38 us (2.7%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 962.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 181.97 us (90.3%)
LB move op cnt : 0
LB apply : 3.18 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (52.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.6638e+05 | 65536 | 2 | 1.405e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.106327317560576 (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.26 us (2.6%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 181.18 us (90.3%)
LB move op cnt : 0
LB apply : 3.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.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 | 5.8659e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6492235871219414 (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.42 us (2.2%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 1.29 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 226.17 us (92.0%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.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.8691e+05 | 65536 | 2 | 1.346e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.199036896167193 (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.79 us (2.9%)
patch tree reduce : 2.23 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 177.77 us (89.7%)
LB move op cnt : 0
LB apply : 3.14 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (53.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.3219e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9518837262622553 (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 : 16.42 us (7.3%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 193.70 us (86.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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.4844e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0252806121688782 (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.48 us (2.3%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 218.31 us (91.7%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.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 | 5.8907e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6604228053174417 (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.32 us (2.0%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 249.48 us (92.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.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.2679e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9274907627300502 (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.29 us (2.6%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 224.10 us (91.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.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.1002e+05 | 65536 | 2 | 1.598e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8517746644868613 (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.35 us (2.1%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 239.01 us (92.6%)
LB move op cnt : 0
LB apply : 2.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.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.0740e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8399411828091803 (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.19 us (2.1%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 227.55 us (92.0%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (57.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.0856e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8451799337545352 (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.55 us (2.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 218.31 us (91.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.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.0461e+05 | 65536 | 2 | 1.620e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8273208638021443 (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.43 us (0.9%)
patch tree reduce : 2.02 us (0.3%)
gen split merge : 1.09 us (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 615.57 us (96.9%)
LB move op cnt : 0
LB apply : 3.46 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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.0644e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.835583695472926 (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.71 us (2.2%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 236.34 us (92.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (51.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.1038e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.85339921477517 (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.90 us (2.3%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 238.28 us (92.1%)
LB move op cnt : 0
LB apply : 3.51 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.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.0857e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8452413279072961 (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.00 us (2.1%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 219.77 us (91.8%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 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.0541e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8309470662150786 (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.35 us (2.2%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 219.22 us (92.0%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (59.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.9333e+05 | 65536 | 2 | 1.666e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.776374512651284 (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.68 us (2.2%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 234.48 us (92.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (50.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.0303e+05 | 65536 | 2 | 1.626e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8202105965388433 (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.27 us (2.1%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 234.76 us (92.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 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.0521e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8300317783014228 (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.41 us (2.4%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 209.53 us (91.5%)
LB move op cnt : 0
LB apply : 2.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (52.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.1413e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8703283363366525 (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.18 us (2.1%)
patch tree reduce : 2.37 us (0.8%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 268.71 us (92.8%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 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.1044e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8536585715236384 (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.28 us (1.9%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 254.91 us (92.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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.1303e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8653713227431157 (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.43 us (2.4%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 206.53 us (91.4%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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.0978e+05 | 65536 | 2 | 1.599e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8506706008875953 (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.67 us (1.9%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 272.61 us (92.9%)
LB move op cnt : 0
LB apply : 3.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.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.0588e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8330611868077484 (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.37 us (1.9%)
patch tree reduce : 2.07 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 258.48 us (92.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 | 4.1150e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.858458420545314 (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.91 us (2.6%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 208.87 us (91.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (51.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.1768e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8863619768874718 (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.95 us (2.6%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 210.75 us (91.3%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.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.0694e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8378511811815403 (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.68 us (2.4%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 215.63 us (91.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (53.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.0189e+05 | 65536 | 2 | 1.631e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8150365618799884 (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 : 16.29 us (5.7%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 253.73 us (89.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (52.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.0795e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8424031952575555 (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.28 us (2.0%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 242.21 us (92.6%)
LB move op cnt : 0
LB apply : 3.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 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.0535e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8306846159744579 (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.66 us (2.1%)
patch tree reduce : 2.04 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 : 254.51 us (92.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.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.0786e+05 | 65536 | 2 | 1.607e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8420097829900524 (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.20 us (2.3%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 205.57 us (91.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 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 | 4.0826e+05 | 65536 | 2 | 1.605e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8438000063839857 (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.59 us (2.3%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 220.45 us (91.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (52.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.0306e+05 | 65536 | 2 | 1.626e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8203222512858288 (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.49 us (2.0%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 249.77 us (91.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.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.0628e+05 | 65536 | 2 | 1.613e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8348940865141057 (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.82 us (2.1%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 256.61 us (92.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (58.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.1111e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.856688852247467 (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.89 us (2.4%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 221.18 us (91.8%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.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.0400e+05 | 65536 | 2 | 1.622e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8245997246935215 (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.44 us (2.2%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 222.38 us (91.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.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.0927e+05 | 65536 | 2 | 1.601e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8483669020200144 (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.60 us (2.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 221.03 us (91.9%)
LB move op cnt : 0
LB apply : 2.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (53.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.1422e+05 | 65536 | 2 | 1.582e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8707526449933145 (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.63 us (2.3%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 219.82 us (91.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.7%)
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.1144e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8581653580952593 (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.29 us (2.1%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 235.24 us (92.5%)
LB move op cnt : 0
LB apply : 2.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (50.8%)
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.0933e+05 | 65536 | 2 | 1.601e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8486623200506003 (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 : 5.33 us (1.9%)
patch tree reduce : 2.11 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 : 262.51 us (93.0%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (57.0%)
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.1467e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8727738980367339 (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.55 us (2.2%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 227.83 us (92.2%)
LB move op cnt : 0
LB apply : 3.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (53.5%)
Info: cfl dt = 8.221661412416779e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1002e+05 | 65536 | 2 | 1.598e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8517623028577963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007235062042926741, dt = 8.221661412416779e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 239.36 us (92.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.9%)
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.1133e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8577025245514587 (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 : 5.49 us (2.3%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 211.68 us (86.8%)
LB move op cnt : 0
LB apply : 15.41 us (6.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (58.4%)
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.1873e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8911020527696898 (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.25 us (2.3%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 211.80 us (91.6%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.5%)
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.1317e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.866013163912384 (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.83 us (2.5%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 216.25 us (91.6%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.0%)
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.0919e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.848026115083337 (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.74 us (1.0%)
patch tree reduce : 2.01 us (0.3%)
gen split merge : 1.02 us (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.2%)
LB compute : 581.42 us (96.6%)
LB move op cnt : 0
LB apply : 3.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (64.7%)
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.1139e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8579767563495981 (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.53 us (2.1%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 239.16 us (91.4%)
LB move op cnt : 0
LB apply : 5.12 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (52.8%)
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.1513e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.874835470996723 (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.81 us (2.4%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 221.40 us (91.6%)
LB move op cnt : 0
LB apply : 3.66 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.8%)
Info: cfl dt = 8.221661412422246e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0569e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8321929156827543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007810578341795971, dt = 8.221661412422246e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.22 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 223.24 us (91.7%)
LB move op cnt : 0
LB apply : 3.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.4%)
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.0727e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8393435986843325 (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.70 us (2.4%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 217.29 us (91.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (52.4%)
Info: cfl dt = 8.221661412436142e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0813e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8432483078348036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007975011570044465, dt = 8.221661412436142e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 229.75 us (92.1%)
LB move op cnt : 0
LB apply : 3.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.9%)
Info: cfl dt = 8.22166141245245e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8224116236791668 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008057228184168827, dt = 8.22166141245245e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 : 2.11 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 256.55 us (92.9%)
LB move op cnt : 0
LB apply : 3.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (62.3%)
Info: cfl dt = 8.221661412481647e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8669473547398419 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008139444798293352, dt = 8.221661412481647e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 212.26 us (91.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (53.9%)
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.1022e+05 | 65536 | 2 | 1.598e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8526733345882251 (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.39 us (2.1%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 240.87 us (92.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (51.1%)
Info: cfl dt = 8.221661412623576e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1135e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8577973583872127 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008303878026543502, dt = 8.221661412623576e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 239.27 us (92.3%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.1%)
Info: cfl dt = 8.221661412779597e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0912e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8477251329280686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008386094640669738, dt = 8.221661412779597e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 235.96 us (92.2%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.5%)
Info: cfl dt = 8.221661413046225e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1409e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.870155242382589 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008468311254797535, dt = 8.221661413046225e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.96 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 262.94 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.13 us (54.1%)
Info: cfl dt = 8.22166141349692e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1092e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.855840705372309 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008550527868927998, dt = 8.22166141349692e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 254.86 us (92.7%)
LB move op cnt : 0
LB apply : 3.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (61.4%)
Info: cfl dt = 8.221661414250665e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8870174929648278 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008632744483062968, dt = 8.221661414250665e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 232.63 us (91.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (55.9%)
Info: cfl dt = 8.221661415498193e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8676617438224843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008714961097205475, dt = 8.221661415498193e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 238.46 us (92.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.65 us (90.8%)
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.0068e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8095798696010637 (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.75 us (2.4%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 224.21 us (91.8%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (52.6%)
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 | 3.9794e+05 | 65536 | 2 | 1.647e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7972179938561368 (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 : 5.44 us (2.2%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 224.52 us (91.6%)
LB move op cnt : 0
LB apply : 3.61 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.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.9104e+05 | 65536 | 2 | 1.676e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7660426451471134 (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.72 us (2.0%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 271.59 us (93.1%)
LB move op cnt : 0
LB apply : 3.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.0%)
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.0790e+05 | 65536 | 2 | 1.607e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8421875925170257 (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 : 5.64 us (2.2%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 235.91 us (92.1%)
LB move op cnt : 0
LB apply : 3.49 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.1%)
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.1084e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8554764804177177 (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.35 us (1.9%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 257.28 us (92.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (54.9%)
Info: cfl dt = 8.221661468889321e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1307e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8655469620935825 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009208260782833065, dt = 8.221661468889321e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 216.84 us (91.6%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (59.4%)
Info: cfl dt = 8.22166150120062e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1477e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8732403496353964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009290477397521958, dt = 8.22166150120062e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 250.69 us (92.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (52.3%)
Info: cfl dt = 8.221661550787188e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1603e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.878907908838124 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009372694012533964, dt = 8.221661550787188e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 238.92 us (92.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (58.5%)
Info: cfl dt = 8.2216616262322e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1222e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8617180643452682 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009454910628041836, dt = 8.2216616262322e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 209.30 us (91.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (58.9%)
Info: cfl dt = 8.22166174005305e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8234001358584817 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009537127244304158, dt = 8.22166174005305e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 243.72 us (92.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (56.9%)
Info: cfl dt = 8.221661910348405e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9867e+05 | 65536 | 2 | 1.644e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8005030622556257 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00961934386170469, dt = 8.221661910348405e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 214.21 us (90.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (51.9%)
Info: cfl dt = 8.221662163065929e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1343e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8671539966180166 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009701560480808172, dt = 8.221662163065929e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.19 us (0.8%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 243.87 us (92.4%)
LB move op cnt : 0
LB apply : 3.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (51.3%)
Info: cfl dt = 8.221662535096406e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.86154113759656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009783777102438832, dt = 8.221662535096406e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 206.07 us (91.2%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.1%)
Info: cfl dt = 8.221663078457544e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8911029272258184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009865993727789795, dt = 8.221663078457544e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.87 us (6.9%)
patch tree reduce : 2.34 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 214.50 us (87.2%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (53.8%)
Info: cfl dt = 8.22166386590058e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0879e+05 | 65536 | 2 | 1.603e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8462084419422462 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00994821035857437, dt = 8.22166386590058e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 260.39 us (93.1%)
LB move op cnt : 0
LB apply : 3.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (54.0%)
Info: cfl dt = 8.221664998356484e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8382220525697084 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010030426997233376, dt = 8.221664998356484e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 216.87 us (91.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.0%)
Info: cfl dt = 8.221666614737065e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8302400382795505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01011264364721694, dt = 8.221666614737065e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 228.04 us (87.9%)
LB move op cnt : 0
LB apply : 15.06 us (5.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (58.7%)
Info: cfl dt = 8.221668904720294e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8391153817088057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010194860313364312, dt = 8.221668904720294e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 222.03 us (91.7%)
LB move op cnt : 0
LB apply : 3.54 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (58.2%)
Info: cfl dt = 8.221672125278772e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0534e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.830646552357674 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010277077002411514, dt = 8.221672125278772e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 247.13 us (92.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (55.7%)
Info: cfl dt = 8.221676621854159e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1034e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8531974823857185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010359293723664302, dt = 8.221676621854159e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 226.80 us (91.8%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (57.0%)
Info: cfl dt = 8.221682855236436e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0887e+05 | 65536 | 2 | 1.603e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8465638926195367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010441510489882844, dt = 8.221682855236436e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 209.52 us (91.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.4%)
Info: cfl dt = 8.221691435370804e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.846367670444666 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010523727318435209, dt = 8.221691435370804e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 230.49 us (92.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (64.7%)
Info: cfl dt = 8.221703163480685e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0624e+05 | 65536 | 2 | 1.613e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8347117723063282 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010605944232788917, dt = 8.221703163480685e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 211.53 us (91.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.1%)
Info: cfl dt = 8.221719084054268e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9874e+05 | 65536 | 2 | 1.644e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8008182308174414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010688161264423724, dt = 8.221719084054268e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 233.49 us (92.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (58.2%)
Info: cfl dt = 8.221740548382688e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4836e+05 | 65536 | 2 | 1.881e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5733150241375309 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010770378455264266, dt = 8.221740548382688e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 209.27 us (91.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.0%)
Info: cfl dt = 8.221769291446324e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1101e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8562512794884782 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010852595860748092, dt = 8.221769291446324e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 224.21 us (91.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.0%)
Info: cfl dt = 8.22180752400432e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1046e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.853771546221252 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010934813553662555, dt = 8.22180752400432e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 215.00 us (91.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.6%)
Info: cfl dt = 8.221858041731438e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0686e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8375222408933967 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011017031628902598, dt = 8.221858041731438e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 208.90 us (91.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.0%)
Info: cfl dt = 8.221924353143363e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0657e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8362263067914693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011099250209319914, dt = 8.221924353143363e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 221.74 us (91.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.2%)
Info: cfl dt = 8.222010827833036e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0242e+05 | 65536 | 2 | 1.629e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8175027106220305 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011181469452851348, dt = 8.222010827833036e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 231.52 us (92.1%)
LB move op cnt : 0
LB apply : 3.51 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (60.5%)
Info: cfl dt = 8.2221228661826e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0057e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8091847974839637 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011263689561129678, dt = 8.2221228661826e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 : 2.03 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 : 266.10 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.20 us (59.1%)
Info: cfl dt = 8.222267091196443e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0334e+05 | 65536 | 2 | 1.625e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8217164580055438 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011345910789791504, dt = 8.222267091196443e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 237.38 us (91.9%)
LB move op cnt : 0
LB apply : 3.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (55.4%)
Info: cfl dt = 8.222451562402445e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.624e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8221105088177165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011428133460703468, dt = 8.222451562402445e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 224.91 us (91.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.9%)
Info: cfl dt = 8.222686010880412e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8664789023176005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011510357976327493, dt = 8.222686010880412e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.20 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 240.24 us (92.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (53.5%)
Info: cfl dt = 8.2229820933972e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1066e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.854899278676592 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011592584836436298, dt = 8.2229820933972e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 240.15 us (92.2%)
LB move op cnt : 0
LB apply : 3.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (56.8%)
Info: cfl dt = 8.22335366237003e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0468e+05 | 65536 | 2 | 1.619e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8279604405047907 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01167481465737027, dt = 8.22335366237003e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 241.95 us (92.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.6%)
Info: cfl dt = 8.223817046970692e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1053e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8544745119183867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01175704819399397, dt = 8.223817046970692e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.44 us (0.9%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 237.48 us (92.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.2%)
Info: cfl dt = 8.224391339170822e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0163e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8143673550833725 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011839286364463675, dt = 8.224391339170822e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 287.61 us (93.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (51.1%)
Info: cfl dt = 8.225098676978778e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8176957297316383 (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 : 5.66 us (2.3%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 226.58 us (92.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (59.4%)
Info: cfl dt = 8.22591594377865e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7852289953999085 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 496.43984955800005 (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.61 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.75 us (57.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 : 881.00 ns (0.3%)
patch tree reduce : 1.48 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.4%)
LB compute : 249.81 us (95.9%)
LB move op cnt : 0
LB apply : 2.88 us (1.1%)
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 : 496.58604434700004 (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 (2.6%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 255.04 us (92.1%)
LB move op cnt : 0
LB apply : 3.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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 | 5.7093e+05 | 65536 | 2 | 1.148e-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 = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 187.59 us (90.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (52.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 | 5.5515e+05 | 65536 | 2 | 1.181e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5072184298597024 (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 : 4.99 us (2.1%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 217.66 us (91.8%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.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 | 5.5933e+05 | 65536 | 2 | 1.172e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.526107832279259 (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.55 us (2.7%)
patch tree reduce : 1.97 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 185.98 us (90.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (55.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 | 5.6400e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5471684148763454 (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.87 us (3.0%)
patch tree reduce : 2.12 us (1.1%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 176.73 us (89.5%)
LB move op cnt : 0
LB apply : 2.96 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 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 | 5.5962e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6400375608906128 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 497.22908855000003 (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.66 us (3.0%)
patch tree reduce : 2.12 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 232.69 us (91.1%)
LB move op cnt : 0
LB apply : 3.92 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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 | 5.5846e+05 | 65536 | 2 | 1.174e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.522186107074602 (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.49 us (2.4%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 206.53 us (91.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.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 | 5.6610e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 1.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.556693367106699 (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.85 us (2.8%)
patch tree reduce : 2.49 us (1.2%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 186.22 us (90.0%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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 | 5.6447e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5493296054453203 (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.76 us (2.4%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 217.25 us (91.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.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 | 5.7644e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6893242451985253 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 497.753507393 (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 : 7.73 us (2.9%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 246.51 us (91.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.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 | 5.7191e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5828916804803566 (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.61 us (2.7%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 191.82 us (90.7%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (52.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 | 5.6598e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 2.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5561128872250745 (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.73 us (2.8%)
patch tree reduce : 2.19 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 186.80 us (90.2%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.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 | 5.6804e+05 | 65536 | 2 | 1.154e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.565447720943064 (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.81 us (2.4%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 225.79 us (91.8%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.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 | 5.4191e+05 | 65536 | 2 | 1.209e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5881347604105533 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 498.284726813 (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.66 us (2.9%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 237.52 us (90.9%)
LB move op cnt : 0
LB apply : 4.69 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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 | 5.5417e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.502781010614304 (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.19 us (2.5%)
patch tree reduce : 2.25 us (1.1%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 186.97 us (90.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (53.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 | 5.3363e+05 | 65536 | 2 | 1.228e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4100314079210263 (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.37 us (2.7%)
patch tree reduce : 2.09 us (1.1%)
gen split merge : 1.11 us (0.6%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 178.16 us (90.2%)
LB move op cnt : 0
LB apply : 3.10 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.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 | 5.5325e+05 | 65536 | 2 | 1.185e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4986173586415275 (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.58 us (2.8%)
patch tree reduce : 1.78 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 182.26 us (90.5%)
LB move op cnt : 0
LB apply : 2.96 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.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 | 5.2478e+05 | 65536 | 2 | 1.249e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5379311792563994 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 498.831957808 (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 : 8.05 us (1.3%)
patch tree reduce : 2.00 us (0.3%)
gen split merge : 1.05 us (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.2%)
LB compute : 581.22 us (96.0%)
LB move op cnt : 0
LB apply : 4.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 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 | 5.5285e+05 | 65536 | 2 | 1.185e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4968523877100703 (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.49 us (2.2%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 234.11 us (92.2%)
LB move op cnt : 0
LB apply : 3.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.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 | 5.3479e+05 | 65536 | 2 | 1.225e-01 | 0.0% | 1.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4152792471710827 (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 : 5.19 us (2.2%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 218.41 us (91.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.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.8497e+05 | 65536 | 2 | 1.351e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.190287800115816 (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.35 us (2.5%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 191.49 us (90.7%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (54.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 | 5.4758e+05 | 65536 | 2 | 1.197e-01 | 0.0% | 1.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6047474403450976 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 499.38690030900005 (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.29 us (2.8%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 236.54 us (91.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 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.2034e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.89836324749858 (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 : 5.66 us (2.7%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 192.66 us (90.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.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 | 5.6383e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.546411676216111 (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.53 us (2.6%)
patch tree reduce : 2.02 us (1.0%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 191.27 us (90.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.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 | 5.3054e+05 | 65536 | 2 | 1.235e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.396092189936665 (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.73 us (2.7%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 190.74 us (90.6%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.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 | 5.6667e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6607024382119198 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 499.96658367000003 (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.70 us (2.8%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 249.88 us (91.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (56.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 | 5.4413e+05 | 65536 | 2 | 1.204e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4574364425354385 (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.31 us (2.2%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 223.72 us (91.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (56.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 | 5.5908e+05 | 65536 | 2 | 1.172e-01 | 0.0% | 1.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.524951880364828 (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.66 us (2.7%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 187.00 us (90.5%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (50.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 | 5.6415e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.547855965929352 (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.62 us (2.6%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 195.14 us (90.8%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (57.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.9655e+05 | 65536 | 2 | 1.653e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1621415545526577 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 500.54809584900005 (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 (2.3%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 301.15 us (93.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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.1020e+05 | 65536 | 2 | 1.598e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8525933437714635 (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 : 5.33 us (2.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 204.34 us (91.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (52.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.1185e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8600131096319095 (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 : 5.23 us (2.3%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 211.71 us (91.8%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (57.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.1053e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8540550828165336 (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 : 5.44 us (2.4%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 206.40 us (91.3%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (52.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.1099e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.204437576528957 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 501.25557124100004 (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 : 8.56 us (2.7%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 295.58 us (92.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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 | 5.6464e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5500643073332996 (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.99 us (2.6%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 213.97 us (91.3%)
LB move op cnt : 0
LB apply : 3.49 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.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 | 5.6469e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 1.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.550292513490848 (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.50 us (2.6%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 189.23 us (90.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (55.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 | 5.7698e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6058268841424708 (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.73 us (2.4%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 213.69 us (91.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.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 | 5.8778e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7225462399426543 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 501.78649897300005 (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 : 8.02 us (3.1%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 239.74 us (91.4%)
LB move op cnt : 0
LB apply : 3.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (50.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 | 5.5140e+05 | 65536 | 2 | 1.189e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4902654130662665 (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.41 us (2.6%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 187.41 us (90.0%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (52.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 | 5.4922e+05 | 65536 | 2 | 1.193e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.480436991354237 (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.71 us (2.7%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 191.84 us (90.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (50.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 | 5.3454e+05 | 65536 | 2 | 1.226e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.41412585437951 (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.25 us (2.0%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 236.22 us (92.2%)
LB move op cnt : 0
LB apply : 3.81 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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 | 5.4860e+05 | 65536 | 2 | 1.195e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.607738695494027 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 502.32825120700005 (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 : 7.79 us (3.0%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 240.04 us (91.1%)
LB move op cnt : 0
LB apply : 3.80 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.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.8554e+05 | 65536 | 2 | 1.350e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1928189736987393 (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.25 us (2.7%)
patch tree reduce : 2.13 us (1.1%)
gen split merge : 1.07 us (0.6%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 174.76 us (90.1%)
LB move op cnt : 0
LB apply : 3.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (56.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 | 5.5365e+05 | 65536 | 2 | 1.184e-01 | 0.0% | 1.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5004472671529436 (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.40 us (2.3%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 212.12 us (91.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (57.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 | 5.5550e+05 | 65536 | 2 | 1.180e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.508802159336015 (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.80 us (2.5%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 208.28 us (91.3%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (57.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 | 5.6362e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.651744144633281 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 502.879995774 (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.77 us (2.9%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 241.25 us (91.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.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 | 5.4742e+05 | 65536 | 2 | 1.197e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4722993238460216 (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.37 us (2.6%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 1.30 us (0.6%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 189.52 us (90.8%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (55.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 | 5.4128e+05 | 65536 | 2 | 1.211e-01 | 0.0% | 1.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4445783581318383 (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.37 us (2.7%)
patch tree reduce : 1.97 us (1.0%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.5%)
LB compute : 176.02 us (90.2%)
LB move op cnt : 0
LB apply : 2.91 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (55.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 | 5.5825e+05 | 65536 | 2 | 1.174e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.521237086143519 (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.71 us (2.7%)
patch tree reduce : 2.32 us (1.1%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 190.84 us (90.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (55.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 | 5.6197e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6469149287603178 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 503.41576827600005 (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.66 us (2.9%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 245.60 us (91.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (55.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 | 5.5651e+05 | 65536 | 2 | 1.178e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5133401728616875 (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.56 us (2.7%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 187.32 us (90.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (57.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.4782e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.022497838407092 (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.65 us (2.5%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.32 us (0.6%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 209.01 us (91.4%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (52.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 | 5.5619e+05 | 65536 | 2 | 1.178e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.511904637649568 (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.39 us (2.5%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 194.09 us (90.8%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (53.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 | 5.5381e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6229924798274356 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 503.976423719 (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 : 7.72 us (3.2%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 215.24 us (90.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 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 | 5.5098e+05 | 65536 | 2 | 1.189e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4883688007972613 (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.60 us (2.2%)
patch tree reduce : 2.12 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 237.64 us (92.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (52.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 | 5.4581e+05 | 65536 | 2 | 1.201e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4650521365523037 (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.72 us (2.7%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 188.17 us (90.3%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.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 | 5.4466e+05 | 65536 | 2 | 1.203e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4598541935579417 (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.30 us (2.6%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 186.25 us (90.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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 | 5.4252e+05 | 65536 | 2 | 1.208e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5899272080973248 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 504.518233699 (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.00 us (2.8%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 230.89 us (91.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (53.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 | 5.4799e+05 | 65536 | 2 | 1.196e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.474866566302331 (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.45 us (2.6%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 188.08 us (90.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (47.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 | 5.3773e+05 | 65536 | 2 | 1.219e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4285587304325946 (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 : 5.45 us (2.3%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 213.88 us (91.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (57.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 | 5.4729e+05 | 65536 | 2 | 1.197e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4717308926449335 (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.52 us (2.8%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 180.43 us (90.3%)
LB move op cnt : 0
LB apply : 3.11 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (53.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 | 5.4086e+05 | 65536 | 2 | 1.212e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5850560199528323 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 505.05732800000004 (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 : 7.90 us (2.9%)
patch tree reduce : 2.25 us (0.8%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 249.84 us (91.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (57.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 | 5.3808e+05 | 65536 | 2 | 1.218e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.430147926765506 (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.81 us (2.7%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 196.99 us (90.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.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 | 5.3659e+05 | 65536 | 2 | 1.221e-01 | 0.0% | 1.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4234180282667808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004664433228248336, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 187.86 us (90.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.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 | 5.4405e+05 | 65536 | 2 | 1.205e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.457093284903731 (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.30 us (2.6%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 187.20 us (90.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (58.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 | 5.4510e+05 | 65536 | 2 | 1.202e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5974698954542657 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 505.60373111 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0048000000000000004, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.2%)
patch tree reduce : 2.37 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 233.58 us (91.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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 | 5.5251e+05 | 65536 | 2 | 1.186e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4953061299631307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004882216614124168, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 187.20 us (90.7%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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 | 5.5050e+05 | 65536 | 2 | 1.190e-01 | 0.0% | 1.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.486229785579407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004964433228248336, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 196.45 us (90.9%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.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 | 5.5060e+05 | 65536 | 2 | 1.190e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4866565255717057 (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.20 us (2.4%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 197.42 us (90.9%)
LB move op cnt : 0
LB apply : 3.53 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.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 | 5.4384e+05 | 65536 | 2 | 1.205e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5937748551216655 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 506.14766285800005 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0051, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.42 us (3.3%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 229.19 us (90.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.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 | 5.4158e+05 | 65536 | 2 | 1.210e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4459304720887034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005182216614124168, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 192.23 us (91.0%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 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 | 5.3520e+05 | 65536 | 2 | 1.225e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.417098667569241 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005264433228248336, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 185.68 us (90.6%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (51.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 | 5.4180e+05 | 65536 | 2 | 1.210e-01 | 0.0% | 1.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.446933518175967 (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.49 us (2.6%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 192.36 us (90.6%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (56.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 | 5.3498e+05 | 65536 | 2 | 1.225e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5678225659399097 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 506.69691516 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0054, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.02 us (3.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 220.25 us (90.3%)
LB move op cnt : 0
LB apply : 3.78 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (62.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 | 5.3672e+05 | 65536 | 2 | 1.221e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4239785672837972 (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.80 us (2.7%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 192.42 us (90.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (49.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 | 5.3542e+05 | 65536 | 2 | 1.224e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4181245276839864 (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.92 us (2.6%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 207.52 us (91.2%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.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 | 5.4784e+05 | 65536 | 2 | 1.196e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4742163705605296 (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.64 us (2.3%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 229.59 us (91.9%)
LB move op cnt : 0
LB apply : 3.52 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (60.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 | 5.3449e+05 | 65536 | 2 | 1.226e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5663943255407684 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 507.247224209 (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 : 7.09 us (2.7%)
patch tree reduce : 2.21 us (0.9%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 236.37 us (91.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (53.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 | 5.2424e+05 | 65536 | 2 | 1.250e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.367625798215316 (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.67 us (2.8%)
patch tree reduce : 2.13 us (1.1%)
gen split merge : 1.12 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 183.21 us (90.2%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.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 | 5.4138e+05 | 65536 | 2 | 1.211e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4450138021935373 (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.25 us (2.7%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 211.46 us (90.8%)
LB move op cnt : 0
LB apply : 3.83 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (57.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 | 5.3286e+05 | 65536 | 2 | 1.230e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4065439535556936 (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.78 us (2.7%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 194.98 us (90.7%)
LB move op cnt : 0
LB apply : 3.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.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 | 5.3592e+05 | 65536 | 2 | 1.223e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.570573061532822 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 507.80024492100006 (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.18 us (2.9%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 224.65 us (91.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.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 | 5.3360e+05 | 65536 | 2 | 1.228e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4098852978949856 (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.41 us (2.3%)
patch tree reduce : 2.22 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 218.49 us (91.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.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 | 5.4378e+05 | 65536 | 2 | 1.205e-01 | 0.0% | 1.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4558526707751125 (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.24 us (2.6%)
patch tree reduce : 1.81 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 185.67 us (90.6%)
LB move op cnt : 0
LB apply : 3.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (52.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 | 5.3264e+05 | 65536 | 2 | 1.230e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.405569830320032 (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.69 us (2.8%)
patch tree reduce : 2.19 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 185.41 us (90.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.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.5910e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3454504365327271 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 508.370045944 (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 : 7.54 us (2.9%)
patch tree reduce : 2.17 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 234.85 us (91.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.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 | 5.3040e+05 | 65536 | 2 | 1.236e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.395431771972641 (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.68 us (2.6%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 199.82 us (90.9%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (56.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 | 5.4508e+05 | 65536 | 2 | 1.202e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4617530255054065 (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.83 us (2.4%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 226.59 us (91.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.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 | 5.3392e+05 | 65536 | 2 | 1.227e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4113399467891985 (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.41 us (2.6%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 184.41 us (90.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (54.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 | 5.4550e+05 | 65536 | 2 | 1.201e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5986600350105036 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 508.91929011300005 (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.34 us (3.0%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 219.95 us (91.0%)
LB move op cnt : 0
LB apply : 3.59 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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 | 5.4507e+05 | 65536 | 2 | 1.202e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.461695614552769 (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.97 us (2.9%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 188.66 us (90.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (59.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 | 5.6851e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5675669747124648 (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.64 us (2.5%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 207.94 us (91.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (58.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 | 5.5450e+05 | 65536 | 2 | 1.182e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.504297687819698 (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.45 us (2.0%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 250.20 us (92.7%)
LB move op cnt : 0
LB apply : 3.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (51.7%)
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 | 5.5565e+05 | 65536 | 2 | 1.179e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6284076154461429 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 509.44883481600004 (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.70 us (2.7%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 258.88 us (92.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.9%)
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 | 5.5259e+05 | 65536 | 2 | 1.186e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4956500074769434 (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.79 us (2.4%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 221.76 us (91.6%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.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 | 5.3048e+05 | 65536 | 2 | 1.235e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3957921875270003 (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.81 us (2.6%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 188.38 us (85.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.4%)
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 | 5.3913e+05 | 65536 | 2 | 1.216e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4348616174332847 (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.29 us (2.1%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 229.24 us (92.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (59.9%)
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 | 5.3293e+05 | 65536 | 2 | 1.230e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5618093787033818 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 509.99429364900004 (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 : 7.76 us (2.9%)
patch tree reduce : 2.21 us (0.8%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 246.90 us (91.6%)
LB move op cnt : 0
LB apply : 3.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.0%)
Info: cfl dt = 8.221661412416858e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5204e+05 | 65536 | 2 | 1.187e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.493193881680823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007282216614124168, dt = 8.221661412416858e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 190.82 us (90.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.6%)
Info: cfl dt = 8.221661412416984e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5079e+05 | 65536 | 2 | 1.190e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.487522821506936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007364433228248337, dt = 8.221661412416984e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1.96 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 185.60 us (90.4%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (44.9%)
Info: cfl dt = 8.221661412417224e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2618e+05 | 65536 | 2 | 1.246e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3763664484896623 (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.75 us (2.6%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 198.51 us (90.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (53.0%)
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 | 5.2611e+05 | 65536 | 2 | 1.246e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5418276261312895 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 510.543448043 (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 : 8.61 us (3.3%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 236.27 us (91.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (61.4%)
Info: cfl dt = 8.221661412418223e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2586e+05 | 65536 | 2 | 1.246e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.37494010868732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007582216614124175, dt = 8.221661412418223e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.36 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 200.83 us (90.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.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 | 5.4563e+05 | 65536 | 2 | 1.201e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4642470260363045 (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 : 5.33 us (2.4%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 199.26 us (91.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (54.7%)
Info: cfl dt = 8.22166141242209e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4454e+05 | 65536 | 2 | 1.204e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4593090640561903 (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.41 us (2.4%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 201.29 us (91.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.0%)
Info: cfl dt = 8.221661412424839e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3291e+05 | 65536 | 2 | 1.230e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5617558609953106 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 511.09472308200003 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0078000000000000005, dt = 8.221661412424839e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.1%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 213.70 us (90.6%)
LB move op cnt : 0
LB apply : 3.49 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (60.7%)
Info: cfl dt = 8.221661412431756e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3678e+05 | 65536 | 2 | 1.221e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4242424435921937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007882216614124249, dt = 8.221661412431756e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 184.09 us (90.0%)
LB move op cnt : 0
LB apply : 3.31 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (56.9%)
Info: cfl dt = 8.221661412444173e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4460e+05 | 65536 | 2 | 1.203e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4595551609989057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007964433228248566, dt = 8.221661412444173e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 195.23 us (90.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.9%)
Info: cfl dt = 8.221661412466215e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4983e+05 | 65536 | 2 | 1.192e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.483188221475078 (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.58 us (2.5%)
patch tree reduce : 2.45 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 202.39 us (90.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (59.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 | 5.3268e+05 | 65536 | 2 | 1.230e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5610743073984805 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 511.63864462000004 (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.07 us (2.7%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 245.04 us (91.9%)
LB move op cnt : 0
LB apply : 3.40 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.3%)
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.8200e+05 | 65536 | 2 | 1.360e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.176866915552099 (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.16 us (2.0%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 236.26 us (92.7%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.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 | 5.7175e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.582173288624625 (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 (2.2%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 233.33 us (92.1%)
LB move op cnt : 0
LB apply : 3.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.6%)
Info: cfl dt = 8.221661412807878e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4381e+05 | 65536 | 2 | 1.205e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4559925268935054 (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 : 5.54 us (2.5%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 203.62 us (91.4%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (52.2%)
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 | 5.6101e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 1.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.644107317924421 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 512.204828977 (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.57 us (3.2%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 216.56 us (90.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.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 | 5.6818e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5660557635803016 (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.83 us (2.7%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 199.37 us (90.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (59.9%)
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 | 5.7030e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.57563900181029 (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.80 us (2.8%)
patch tree reduce : 2.19 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 186.47 us (90.3%)
LB move op cnt : 0
LB apply : 3.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.4%)
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 | 5.4731e+05 | 65536 | 2 | 1.197e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4718099317822007 (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.88 us (2.8%)
patch tree reduce : 1.99 us (1.0%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 187.46 us (90.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.5%)
Info: cfl dt = 8.221661416141769e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7674e+05 | 65536 | 2 | 1.375e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3971293575509418 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 512.766429066 (s) [Godunov][rank=0]
amr::Godunov: t = 0.008700000000000001, dt = 8.221661416141769e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.6%)
patch tree reduce : 2.32 us (0.9%)
gen split merge : 751.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 248.33 us (91.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (61.1%)
Info: cfl dt = 8.221661418557303e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8236e+05 | 65536 | 2 | 1.714e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7268607929128328 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008782216614161419, dt = 8.221661418557303e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.8%)
patch tree reduce : 2.12 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 177.75 us (90.1%)
LB move op cnt : 0
LB apply : 3.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.0%)
Info: cfl dt = 8.221661422422236e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3250e+05 | 65536 | 2 | 1.231e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4049446293449073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008864433228346992, dt = 8.221661422422236e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.02 us (1.0%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 187.56 us (90.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.9%)
Info: cfl dt = 8.221661428554603e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6017e+05 | 65536 | 2 | 1.170e-01 | 0.0% | 1.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.529904798207957 (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.70 us (2.6%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 197.17 us (90.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.2%)
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 | 5.5174e+05 | 65536 | 2 | 1.188e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.616943568294055 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 513.366350388 (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.41 us (2.7%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 254.48 us (91.9%)
LB move op cnt : 0
LB apply : 3.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (59.8%)
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 | 5.5420e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.502943308070338 (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.50 us (2.6%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 195.50 us (91.0%)
LB move op cnt : 0
LB apply : 2.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (44.8%)
Info: cfl dt = 8.221661467494494e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3381e+05 | 65536 | 2 | 1.228e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4108572747220345 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00916443322881637, dt = 8.221661467494494e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 187.80 us (90.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (56.4%)
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.7584e+05 | 65536 | 2 | 1.377e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1490466427917565 (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.53 us (2.2%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 234.28 us (92.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.3%)
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 | 3.9769e+05 | 65536 | 2 | 1.648e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1654833596321175 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 513.996227327 (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.35 us (2.4%)
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.07 us (0.4%)
LB compute : 267.77 us (88.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (59.8%)
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.1675e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.882160052366777 (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.42 us (2.1%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 233.64 us (92.2%)
LB move op cnt : 0
LB apply : 3.40 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.6%)
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.2876e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9364132298104146 (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.29 us (1.8%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 277.03 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.18 us (56.2%)
Info: cfl dt = 8.221661822686465e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4077e+05 | 65536 | 2 | 1.212e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4422575115851983 (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.43 us (2.6%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 192.77 us (90.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.5%)
Info: cfl dt = 8.221661946123442e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.561e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2299824134726263 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 514.656766412 (s) [Godunov][rank=0]
amr::Godunov: t = 0.009600000000000001, dt = 8.221661946123442e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.53 us (3.0%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 262.06 us (91.7%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (60.8%)
Info: cfl dt = 8.22166221431721e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9505e+05 | 65536 | 2 | 1.324e-01 | 0.0% | 1.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2357864396569664 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009682216619461234, dt = 8.22166221431721e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 209.30 us (91.0%)
LB move op cnt : 0
LB apply : 3.51 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (53.7%)
Info: cfl dt = 8.221662605771889e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7602e+05 | 65536 | 2 | 1.377e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1498288090597075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009764433241604406, dt = 8.221662605771889e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.44 us (1.0%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 226.07 us (91.6%)
LB move op cnt : 0
LB apply : 3.59 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (53.8%)
Info: cfl dt = 8.221663173267339e-05 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.079711768640573 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009846649867662125, dt = 5.335013233787565e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.14 us (1.1%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 177.43 us (90.0%)
LB move op cnt : 0
LB apply : 3.13 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.3%)
Info: cfl dt = 8.221663660463791e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7824e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6945996220658024 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 515.254612056 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0099, dt = 8.221663660463791e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.0%)
patch tree reduce : 2.35 us (0.8%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 259.78 us (91.5%)
LB move op cnt : 0
LB apply : 3.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (59.7%)
Info: cfl dt = 8.221664699651164e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1710e+05 | 65536 | 2 | 1.571e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8837635836804358 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00998221663660464, dt = 8.221664699651164e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 208.40 us (91.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (59.1%)
Info: cfl dt = 8.22166617577936e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0163e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8138627276684116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01006443328360115, dt = 8.22166617577936e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 203.60 us (91.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (53.1%)
Info: cfl dt = 8.221668259147236e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6380e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.546279697236649 (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.83 us (2.8%)
patch tree reduce : 2.26 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 185.47 us (90.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (62.7%)
Info: cfl dt = 8.221670001062291e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7719e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6915228056101028 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 515.87649936 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0102, dt = 8.221670001062291e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.83 us (3.2%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 219.04 us (90.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (59.1%)
Info: cfl dt = 8.221673652452563e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6513e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5522799607174496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010282216700010624, dt = 8.221673652452563e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.36 us (0.8%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 258.19 us (92.6%)
LB move op cnt : 0
LB apply : 3.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.4%)
Info: cfl dt = 8.22167870652026e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1292e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.86489306372959 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01036443343653515, dt = 8.22167870652026e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.23 us (0.7%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 321.17 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.34 us (60.9%)
Info: cfl dt = 8.221685659510487e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4522e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0107364626029574 (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 : 5.24 us (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 187.33 us (90.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (57.5%)
Info: cfl dt = 8.221691327777471e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5393e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.623348825947182 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 516.478344803 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0105, dt = 8.221691327777471e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.5%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 213.45 us (90.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.9%)
Info: cfl dt = 8.221703014816062e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7028e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.57554558907805 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010582216913277775, dt = 8.221703014816062e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 212.57 us (91.6%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (52.3%)
Info: cfl dt = 8.221718794449504e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5638e+05 | 65536 | 2 | 1.178e-01 | 0.0% | 1.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.512767840365886 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010664433943425936, dt = 8.221718794449504e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 186.85 us (90.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.4%)
Info: cfl dt = 8.22173997552355e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7746e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6079943781607535 (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.69 us (2.5%)
patch tree reduce : 2.37 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 209.03 us (91.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.3%)
Info: cfl dt = 8.221756827208892e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6247e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6483317870829008 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 517.004545298 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0108, dt = 8.221756827208892e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.37 us (3.2%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 237.92 us (90.7%)
LB move op cnt : 0
LB apply : 3.77 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (60.3%)
Info: cfl dt = 8.221791028250542e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5805e+05 | 65536 | 2 | 1.174e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5203491461852727 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010882217568272089, dt = 8.221791028250542e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.26 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 188.46 us (90.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.7%)
Info: cfl dt = 8.22183611081914e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7423e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5934122666055783 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010964435478554593, dt = 8.22183611081914e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 187.57 us (90.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.7%)
Info: cfl dt = 8.221895202229862e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6991e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5739520945843894 (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.33 us (2.3%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 207.33 us (91.4%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (55.2%)
Info: cfl dt = 8.221941115122868e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4325e+05 | 65536 | 2 | 1.206e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5919495470514877 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 517.534758721 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0111, dt = 8.221941115122868e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.53 us (3.4%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 230.55 us (90.7%)
LB move op cnt : 0
LB apply : 3.49 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (62.4%)
Info: cfl dt = 8.222032894483575e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7094e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.57859868114824 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01118221941115123, dt = 8.222032894483575e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 187.61 us (90.3%)
LB move op cnt : 0
LB apply : 3.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (53.1%)
Info: cfl dt = 8.222151083568563e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2601e+05 | 65536 | 2 | 1.246e-01 | 0.0% | 1.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.375700386858879 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011264439740096065, dt = 8.222151083568563e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 202.40 us (91.0%)
LB move op cnt : 0
LB apply : 3.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.2%)
Info: cfl dt = 8.222302447867293e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5744e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5177223371431725 (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.71 us (2.3%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 226.64 us (92.0%)
LB move op cnt : 0
LB apply : 3.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (58.5%)
Info: cfl dt = 8.222417351668555e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5604e+05 | 65536 | 2 | 1.179e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6291765173748454 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 518.072673936 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0114, dt = 8.222417351668555e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.9%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 225.25 us (91.1%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.7%)
Info: cfl dt = 8.222643719360099e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5095e+05 | 65536 | 2 | 1.190e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4884855182664958 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011482224173516686, dt = 8.222643719360099e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 192.05 us (90.6%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (52.8%)
Info: cfl dt = 8.22292864216388e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6295e+05 | 65536 | 2 | 1.164e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.542767578311754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011564450610710287, dt = 8.22292864216388e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 187.37 us (90.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.2%)
Info: cfl dt = 8.223285343814185e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5454e+05 | 65536 | 2 | 1.182e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5048698916744425 (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.41 us (2.5%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 194.37 us (90.9%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.0%)
Info: cfl dt = 8.223549926029228e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5522e+05 | 65536 | 2 | 1.180e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6262137981496283 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 518.605329188 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0117, dt = 8.223549926029228e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.99 us (3.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 219.28 us (90.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (50.0%)
Info: cfl dt = 8.224063974063601e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5203e+05 | 65536 | 2 | 1.187e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.493690674217793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011782235499260293, dt = 8.224063974063601e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 214.02 us (91.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (59.2%)
Info: cfl dt = 8.224696627570117e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3835e+05 | 65536 | 2 | 1.217e-01 | 0.0% | 1.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4320488274485084 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01186447613900093, dt = 8.224696627570117e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 209.75 us (91.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.3%)
Info: cfl dt = 8.225471153671991e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9084e+05 | 65536 | 2 | 1.335e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2176165658886475 (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.94 us (2.4%)
patch tree reduce : 2.26 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 222.90 us (91.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (58.0%)
Info: cfl dt = 8.226032306387034e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4836e+05 | 65536 | 2 | 1.195e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.60482748311555 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 519.162211265 (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 13.88 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 (50.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 : 891.00 ns (0.2%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 438.86 us (97.8%)
LB move op cnt : 0
LB apply : 2.79 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 : 9.01 us (2.5%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 333.93 us (93.7%)
LB move op cnt : 0
LB apply : 3.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 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.4683e+05 | 65536 | 2 | 1.890e-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 : 5.52 us (1.9%)
patch tree reduce : 2.34 us (0.8%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 269.85 us (93.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.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 | 5.9147e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.71508849237972 (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.55 us (2.0%)
patch tree reduce : 2.48 us (0.9%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 263.62 us (92.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.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 | 6.0101e+05 | 65536 | 2 | 1.090e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.79296404433998 (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.39 us (1.8%)
patch tree reduce : 2.24 us (0.8%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 272.66 us (93.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (49.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.7930e+05 | 65536 | 2 | 1.367e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.30499336419503 (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.12 us (2.1%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 277.35 us (93.2%)
LB move op cnt : 0
LB apply : 3.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (58.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 | 6.0888e+05 | 65536 | 2 | 1.076e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.5042226243803 (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.60 us (2.1%)
patch tree reduce : 2.72 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 251.72 us (92.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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 | 6.1287e+05 | 65536 | 2 | 1.069e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 133.3724447106094 (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.74 us (1.9%)
patch tree reduce : 2.60 us (0.9%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 277.85 us (92.9%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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 | 6.1339e+05 | 65536 | 2 | 1.068e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 133.4852500073329 (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.34 us (2.2%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 221.65 us (91.8%)
LB move op cnt : 0
LB apply : 3.52 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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 | 6.0927e+05 | 65536 | 2 | 1.076e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.58977996313507 (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.51 us (2.4%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 210.49 us (91.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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 | 6.0708e+05 | 65536 | 2 | 1.080e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.11350793355913 (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.52 us (2.4%)
patch tree reduce : 2.37 us (1.1%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 205.08 us (90.9%)
LB move op cnt : 0
LB apply : 3.52 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.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 | 6.0313e+05 | 65536 | 2 | 1.087e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.253853078136 (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.41 us (2.6%)
patch tree reduce : 2.45 us (1.2%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 191.04 us (90.6%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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 | 6.1134e+05 | 65536 | 2 | 1.072e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 133.0401214394907 (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.40 us (2.5%)
patch tree reduce : 2.54 us (1.2%)
gen split merge : 981.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 193.18 us (90.6%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.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 | 6.0656e+05 | 65536 | 2 | 1.080e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.9991072372941 (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.15 us (2.5%)
patch tree reduce : 2.35 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 185.97 us (90.3%)
LB move op cnt : 0
LB apply : 3.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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 | 6.0792e+05 | 65536 | 2 | 1.078e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.2954747127248 (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.44 us (2.4%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 210.15 us (91.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.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.4242e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.27909970426784 (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.43 us (1.9%)
patch tree reduce : 2.32 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 263.41 us (92.9%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.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.5380e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.75623352800835 (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.16 us (2.2%)
patch tree reduce : 2.57 us (1.1%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 214.14 us (91.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.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.5826e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.72582870734497 (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.38 us (2.3%)
patch tree reduce : 2.40 us (1.0%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 213.71 us (91.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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.4350e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.51481207591586 (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.54 us (2.4%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 210.23 us (91.2%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.4390e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.60200108382244 (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.29 us (2.4%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 204.04 us (91.4%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.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 | 5.5197e+05 | 65536 | 2 | 1.187e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.12100764468144 (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.36 us (2.0%)
patch tree reduce : 2.39 us (0.9%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 253.42 us (92.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.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 | 5.8509e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.32809175521498 (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.42 us (1.7%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 290.43 us (93.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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 | 6.0726e+05 | 65536 | 2 | 1.079e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.15193211475557 (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.55 us (1.9%)
patch tree reduce : 2.61 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 275.28 us (93.1%)
LB move op cnt : 0
LB apply : 3.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (57.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 | 5.2170e+05 | 65536 | 2 | 1.256e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.53207767774272 (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.45 us (2.0%)
patch tree reduce : 2.29 us (0.9%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 247.17 us (92.3%)
LB move op cnt : 0
LB apply : 3.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 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 | 5.9138e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.6958949180764 (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.71 us (1.8%)
patch tree reduce : 2.56 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 298.26 us (93.3%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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 | 5.7730e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.63164793937456 (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.57 us (2.3%)
patch tree reduce : 2.27 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 220.42 us (91.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (54.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 | 6.0090e+05 | 65536 | 2 | 1.091e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.76805342122256 (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.52 us (2.2%)
patch tree reduce : 2.47 us (1.0%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 229.93 us (92.0%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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 | 5.9548e+05 | 65536 | 2 | 1.101e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.58888230483456 (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.66 us (2.4%)
patch tree reduce : 2.42 us (1.0%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 219.61 us (91.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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 | 5.8775e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.90561566733487 (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.46 us (2.2%)
patch tree reduce : 2.42 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 224.16 us (91.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.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 | 5.8511e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.3313031825734 (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.70 us (2.4%)
patch tree reduce : 2.37 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 212.38 us (91.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (52.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 | 5.2618e+05 | 65536 | 2 | 1.246e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.50801384744376 (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.53 us (2.0%)
patch tree reduce : 2.33 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 261.47 us (93.0%)
LB move op cnt : 0
LB apply : 3.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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 | 5.6905e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.8361100326577 (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.29 us (2.3%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 210.15 us (91.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.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 | 5.3224e+05 | 65536 | 2 | 1.231e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.825719499917 (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.45 us (2.2%)
patch tree reduce : 2.70 us (1.1%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 227.09 us (91.6%)
LB move op cnt : 0
LB apply : 3.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.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 | 5.7044e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.13939028423958 (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.52 us (2.3%)
patch tree reduce : 2.33 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 222.50 us (91.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 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 | 6.1310e+05 | 65536 | 2 | 1.069e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 133.42364264172406 (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.37 us (2.1%)
patch tree reduce : 2.50 us (1.0%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 240.27 us (92.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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 | 6.1526e+05 | 65536 | 2 | 1.065e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 133.89315612503705 (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.49 us (1.9%)
patch tree reduce : 2.32 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 263.95 us (92.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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 | 6.1343e+05 | 65536 | 2 | 1.068e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 133.49512191247564 (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.36 us (1.9%)
patch tree reduce : 2.30 us (0.8%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 262.85 us (92.9%)
LB move op cnt : 0
LB apply : 3.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.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 | 6.0825e+05 | 65536 | 2 | 1.077e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.36782985062612 (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.71 us (2.7%)
patch tree reduce : 2.63 us (1.2%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 192.00 us (90.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (54.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 | 6.1603e+05 | 65536 | 2 | 1.064e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 134.06108991987753 (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.47 us (2.3%)
patch tree reduce : 2.45 us (1.0%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 220.58 us (91.7%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.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 | 5.3448e+05 | 65536 | 2 | 1.226e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.3129170076188 (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.34 us (2.2%)
patch tree reduce : 2.37 us (1.0%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 221.90 us (91.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (54.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 | 6.1477e+05 | 65536 | 2 | 1.066e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 133.7855701106903 (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.21 us (2.0%)
patch tree reduce : 2.71 us (1.1%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 236.90 us (92.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.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.3919e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.57695897830014 (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.41 us (2.1%)
patch tree reduce : 2.49 us (1.0%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 239.73 us (92.1%)
LB move op cnt : 0
LB apply : 3.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.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.0996e+05 | 65536 | 2 | 1.599e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.21666749913821 (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.50 us (2.4%)
patch tree reduce : 2.49 us (1.1%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 207.76 us (91.2%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.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.1261e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.79344760768856 (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.21 us (2.2%)
patch tree reduce : 2.61 us (1.1%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 217.94 us (91.4%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (52.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.0107e+05 | 65536 | 2 | 1.634e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.28044247803153 (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.64 us (2.5%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 205.48 us (91.2%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (57.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.3038e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.65875377612073 (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.22 us (2.4%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 200.03 us (91.1%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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.2858e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.26828327194481 (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.59 us (2.2%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 230.67 us (92.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.2515e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.52028550955345 (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.62 us (2.2%)
patch tree reduce : 2.37 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 238.01 us (92.3%)
LB move op cnt : 0
LB apply : 3.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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.1032e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.29348241187863 (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.40 us (2.4%)
patch tree reduce : 2.54 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 205.89 us (91.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (56.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.3213e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.04042670143566 (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.43 us (2.1%)
patch tree reduce : 2.58 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 241.75 us (92.4%)
LB move op cnt : 0
LB apply : 3.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (48.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 | 5.8153e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.55288893611677 (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.62 us (2.5%)
patch tree reduce : 2.33 us (1.1%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 200.39 us (90.8%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.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 | 6.0306e+05 | 65536 | 2 | 1.087e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.2385551286768 (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.32 us (2.3%)
patch tree reduce : 2.66 us (1.1%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 211.93 us (91.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.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 | 6.0384e+05 | 65536 | 2 | 1.085e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.40899767825059 (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.31 us (2.5%)
patch tree reduce : 2.34 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 192.10 us (90.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (55.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 | 6.0636e+05 | 65536 | 2 | 1.081e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.9569612811636 (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.58 us (2.5%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 205.62 us (91.1%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 | 6.0309e+05 | 65536 | 2 | 1.087e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.24558164542088 (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.14 us (2.2%)
patch tree reduce : 2.40 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 216.72 us (91.8%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.6%)
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 | 6.0614e+05 | 65536 | 2 | 1.081e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.9077402118259 (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 : 5.65 us (2.7%)
patch tree reduce : 2.42 us (1.1%)
gen split merge : 972.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 192.50 us (90.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (52.5%)
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 | 6.0764e+05 | 65536 | 2 | 1.079e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.23411691032388 (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.05 us (2.4%)
patch tree reduce : 2.27 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 188.74 us (90.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (55.4%)
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 | 5.7904e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.00991018439181 (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.25 us (2.1%)
patch tree reduce : 2.42 us (1.0%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 230.64 us (92.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (61.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 | 6.0848e+05 | 65536 | 2 | 1.077e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.4181018826902 (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.27 us (2.5%)
patch tree reduce : 2.61 us (1.2%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 193.26 us (90.7%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (52.8%)
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 | 5.2884e+05 | 65536 | 2 | 1.239e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.08700895120197 (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 : 5.38 us (2.4%)
patch tree reduce : 2.34 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 205.12 us (91.3%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (61.7%)
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 | 5.7617e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.38660091632198 (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.55 us (2.2%)
patch tree reduce : 2.27 us (0.9%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 234.12 us (92.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (60.4%)
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 | 6.0733e+05 | 65536 | 2 | 1.079e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.16680073228224 (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.63 us (2.4%)
patch tree reduce : 2.44 us (1.0%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 218.86 us (91.5%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (60.9%)
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 | 5.0150e+05 | 65536 | 2 | 1.307e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.1372318822396 (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.76 us (2.7%)
patch tree reduce : 2.64 us (1.2%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 195.79 us (90.3%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.3%)
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 | 5.9906e+05 | 65536 | 2 | 1.094e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.36685051032663 (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 : 6.22 us (2.4%)
patch tree reduce : 2.73 us (1.1%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 237.90 us (91.4%)
LB move op cnt : 0
LB apply : 3.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.9%)
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 | 6.0024e+05 | 65536 | 2 | 1.092e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.62424995163678 (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 : 6.00 us (2.7%)
patch tree reduce : 2.93 us (1.3%)
gen split merge : 1.29 us (0.6%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 200.09 us (90.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (56.1%)
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 | 5.8564e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.44651575277138 (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.23 us (2.2%)
patch tree reduce : 2.47 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 213.55 us (91.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (61.6%)
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 | 5.8953e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.2946985084295 (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 : 5.55 us (2.7%)
patch tree reduce : 2.47 us (1.2%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 185.07 us (90.1%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (55.2%)
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 | 5.9858e+05 | 65536 | 2 | 1.095e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.2626130887088 (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.66 us (2.6%)
patch tree reduce : 2.35 us (1.1%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 197.36 us (90.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.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 | 5.3022e+05 | 65536 | 2 | 1.236e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.38655127421168 (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.54 us (2.5%)
patch tree reduce : 2.64 us (1.2%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 202.13 us (90.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.7%)
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 | 5.8226e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.71184459267191 (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.40 us (2.6%)
patch tree reduce : 2.35 us (1.1%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 189.48 us (90.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (55.6%)
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 | 5.9311e+05 | 65536 | 2 | 1.105e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.07312258453848 (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.68 us (2.5%)
patch tree reduce : 2.46 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 203.69 us (91.0%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (52.3%)
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 | 5.7724e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.61854079447777 (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.31 us (2.6%)
patch tree reduce : 2.36 us (1.1%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 187.96 us (90.5%)
LB move op cnt : 0
LB apply : 3.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (55.1%)
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 | 5.9693e+05 | 65536 | 2 | 1.098e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.90473964349587 (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.58 us (2.3%)
patch tree reduce : 2.44 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 227.30 us (91.7%)
LB move op cnt : 0
LB apply : 3.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (59.8%)
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 | 5.8976e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.34483537324903 (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.50 us (2.2%)
patch tree reduce : 2.43 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 226.27 us (91.7%)
LB move op cnt : 0
LB apply : 3.74 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (67.7%)
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 | 5.9643e+05 | 65536 | 2 | 1.099e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.79592847474837 (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 : 5.54 us (2.6%)
patch tree reduce : 2.34 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 193.81 us (89.8%)
LB move op cnt : 0
LB apply : 5.06 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (53.8%)
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 | 5.9282e+05 | 65536 | 2 | 1.105e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.00979303219927 (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.41 us (2.6%)
patch tree reduce : 2.65 us (1.3%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 188.99 us (90.3%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (56.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 | 6.0215e+05 | 65536 | 2 | 1.088e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.03931832047326 (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.55 us (2.6%)
patch tree reduce : 2.68 us (1.3%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 192.87 us (90.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (55.3%)
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 | 5.9761e+05 | 65536 | 2 | 1.097e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.05223954083655 (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.80 us (2.3%)
patch tree reduce : 2.54 us (1.0%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 230.47 us (91.8%)
LB move op cnt : 0
LB apply : 3.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.7%)
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 | 5.9375e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.2122216123635 (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.18 us (2.3%)
patch tree reduce : 2.44 us (1.1%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 203.31 us (91.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (62.4%)
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 | 5.5488e+05 | 65536 | 2 | 1.181e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.75293055227273 (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.71 us (2.4%)
patch tree reduce : 2.53 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 222.10 us (91.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.6%)
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 | 5.9432e+05 | 65536 | 2 | 1.103e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.33730958041463 (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.55 us (2.6%)
patch tree reduce : 2.29 us (1.1%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 190.61 us (90.8%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (62.1%)
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 | 5.9842e+05 | 65536 | 2 | 1.095e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.22905619333767 (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.47 us (2.7%)
patch tree reduce : 2.30 us (1.1%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 186.00 us (90.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.4%)
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 | 6.0322e+05 | 65536 | 2 | 1.086e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.27287601578996 (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.29 us (2.4%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 197.49 us (90.9%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (59.4%)
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 | 5.9567e+05 | 65536 | 2 | 1.100e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.63051627382046 (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.59 us (2.7%)
patch tree reduce : 2.76 us (1.3%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 189.10 us (90.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.9%)
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 | 5.8577e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.47511705359706 (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.48 us (2.6%)
patch tree reduce : 2.66 us (1.3%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 191.76 us (90.5%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.7%)
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 | 5.8942e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.27045462220332 (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.69 us (2.7%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 192.73 us (90.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (55.8%)
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 | 5.8728e+05 | 65536 | 2 | 1.116e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.80489062335221 (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 : 5.82 us (2.6%)
patch tree reduce : 2.53 us (1.1%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 205.60 us (90.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (69.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 | 5.6517e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.99227584740397 (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.74 us (0.2%)
patch tree reduce : 2.51 us (0.1%)
gen split merge : 961.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.0%)
LB compute : 3.29 ms (99.3%)
LB move op cnt : 0
LB apply : 4.50 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.4%)
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.2300e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.05408854970977 (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 : 5.62 us (2.7%)
patch tree reduce : 2.66 us (1.3%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 191.47 us (90.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (49.7%)
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 | 5.6835e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.68413733340395 (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.59 us (2.4%)
patch tree reduce : 2.52 us (1.1%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 217.41 us (91.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (60.2%)
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 | 5.0095e+05 | 65536 | 2 | 1.308e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.01641307149312 (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.53 us (2.6%)
patch tree reduce : 2.39 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 188.90 us (90.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (57.9%)
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 | 6.2239e+05 | 65536 | 2 | 1.053e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 135.44580666690223 (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.55 us (2.5%)
patch tree reduce : 2.55 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 203.27 us (91.0%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (55.8%)
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 | 5.2389e+05 | 65536 | 2 | 1.251e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.00874817156303 (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.35 us (2.6%)
patch tree reduce : 2.30 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 187.07 us (90.7%)
LB move op cnt : 0
LB apply : 2.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (53.0%)
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 | 5.7671e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.50421144749878 (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.43 us (2.1%)
patch tree reduce : 2.40 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 241.08 us (92.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.5%)
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.6136e+05 | 65536 | 2 | 1.420e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.40247750031585 (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.49 us (2.5%)
patch tree reduce : 2.45 us (1.1%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 203.25 us (91.0%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.7%)
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.4732e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.34614328589713 (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.30 us (2.3%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 209.07 us (91.5%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (59.2%)
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.6034e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.18017112821431 (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.36 us (2.4%)
patch tree reduce : 2.38 us (1.1%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 200.79 us (90.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (57.1%)
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.5738e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.53619046984498 (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.63 us (2.5%)
patch tree reduce : 2.71 us (1.2%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 209.59 us (91.3%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (52.9%)
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.4591e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.03968398161334 (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.48 us (2.3%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 217.67 us (91.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (61.5%)
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.3521e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.71102813332843 (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.44 us (2.3%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 213.06 us (91.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.3%)
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.3732e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.1707919542174 (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.57 us (2.5%)
patch tree reduce : 2.35 us (1.1%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 202.46 us (91.2%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (52.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 | 4.4679e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.23045462333194 (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.59 us (2.4%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 209.49 us (91.3%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (56.1%)
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 | 4.3492e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.6469531024977 (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.56 us (2.3%)
patch tree reduce : 2.51 us (1.1%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 216.59 us (91.5%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.8%)
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 | 4.0752e+05 | 65536 | 2 | 1.608e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.68524277181184 (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.48 us (2.5%)
patch tree reduce : 2.54 us (1.1%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 203.11 us (91.0%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.7%)
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.6094e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.31052964249204 (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.29 us (2.3%)
patch tree reduce : 2.43 us (1.1%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 210.86 us (91.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.6%)
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.4327e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.46509254613834 (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.38 us (2.3%)
patch tree reduce : 2.80 us (1.2%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 213.59 us (91.2%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.9%)
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 | 4.4583e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.0222093703955 (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.41 us (2.3%)
patch tree reduce : 2.56 us (1.1%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 212.15 us (91.4%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (50.0%)
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 | 4.5156e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.26792410834307 (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.59 us (2.1%)
patch tree reduce : 2.32 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 246.14 us (92.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.5%)
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.5503e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.02470230145728 (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.27 us (2.3%)
patch tree reduce : 2.43 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 202.06 us (86.5%)
LB move op cnt : 0
LB apply : 14.79 us (6.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (59.4%)
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.6334e+05 | 65536 | 2 | 1.414e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.83205373882588 (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.43 us (2.5%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 198.38 us (90.8%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (54.4%)
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 | 4.4496e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.83145761062228 (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.32 us (2.0%)
patch tree reduce : 2.39 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 241.94 us (92.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.7%)
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 | 4.5323e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.63285407693938 (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.71 us (2.4%)
patch tree reduce : 2.56 us (1.1%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 218.73 us (91.2%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (66.1%)
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.5772e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.60873110137727 (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.45 us (2.2%)
patch tree reduce : 2.37 us (1.0%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 228.63 us (91.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (61.0%)
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 | 4.5449e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.90568500398811 (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.35 us (2.2%)
patch tree reduce : 2.45 us (1.0%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 220.15 us (91.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.8%)
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 | 4.5925e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.94302805740338 (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.51 us (2.2%)
patch tree reduce : 2.46 us (1.0%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 229.32 us (92.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.4%)
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 | 4.5833e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.74128040180811 (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.29 us (1.8%)
patch tree reduce : 2.40 us (0.8%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 278.27 us (93.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (58.2%)
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 | 4.5439e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.88355683931533 (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.59 us (2.5%)
patch tree reduce : 2.37 us (1.1%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 201.52 us (91.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (54.0%)
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 | 4.5187e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.3372348533097 (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.54 us (2.4%)
patch tree reduce : 2.43 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 215.01 us (91.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.3%)
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 | 4.6058e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.2310462599602 (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.11 us (2.1%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 223.98 us (91.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (64.5%)
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 | 4.5381e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.7585639771687 (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.46 us (2.4%)
patch tree reduce : 2.51 us (1.1%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 203.09 us (90.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.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 | 4.5156e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.26964107227231 (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.61 us (2.0%)
patch tree reduce : 2.54 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 262.75 us (92.8%)
LB move op cnt : 0
LB apply : 3.59 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (61.5%)
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 | 4.5115e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.17899092010448 (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 : 5.77 us (2.6%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 203.59 us (90.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (59.1%)
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 | 4.4087e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.94246130156552 (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.23 us (2.4%)
patch tree reduce : 2.72 us (1.2%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 198.50 us (90.8%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.7%)
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 | 4.4261e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.32025895570469 (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.53 us (2.1%)
patch tree reduce : 2.35 us (0.9%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 239.77 us (92.2%)
LB move op cnt : 0
LB apply : 3.59 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (63.7%)
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 | 4.6252e+05 | 65536 | 2 | 1.417e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.65411714480976 (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.10 us (2.2%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 212.04 us (91.6%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.6%)
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 | 4.5767e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.59805348547756 (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 : 6.06 us (2.5%)
patch tree reduce : 2.37 us (1.0%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 221.08 us (91.3%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.6%)
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 | 4.6177e+05 | 65536 | 2 | 1.419e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.49009373847939 (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.49 us (2.5%)
patch tree reduce : 2.33 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 202.19 us (90.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (60.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 | 4.5008e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.94667772531488 (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.41 us (2.0%)
patch tree reduce : 2.26 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 253.81 us (92.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.5%)
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 | 4.6108e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.34127256273813 (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.33 us (2.3%)
patch tree reduce : 2.62 us (1.1%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 211.77 us (91.3%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (54.8%)
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 | 4.5888e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.86070413117321 (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.49 us (2.4%)
patch tree reduce : 2.46 us (1.1%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 206.36 us (91.1%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (54.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 | 4.4941e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.80104432419073 (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 : 7.48 us (3.1%)
patch tree reduce : 3.95 us (1.6%)
gen split merge : 1.53 us (0.6%)
split / merge op : 0/0
apply split merge : 1.67 us (0.7%)
LB compute : 217.62 us (89.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (54.4%)
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 | 4.2372e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.20910510680767 (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.38 us (2.4%)
patch tree reduce : 2.42 us (1.1%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 205.14 us (91.3%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (51.7%)
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 | 4.2340e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.13952231340745 (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 : 5.51 us (2.4%)
patch tree reduce : 2.35 us (1.0%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 210.29 us (91.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.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.9887e+05 | 65536 | 2 | 1.643e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.80303677490033 (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.90 us (2.4%)
patch tree reduce : 2.33 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 223.25 us (91.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (60.9%)
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 | 4.1931e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.25025502477288 (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.71 us (2.2%)
patch tree reduce : 2.51 us (1.0%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 239.37 us (92.0%)
LB move op cnt : 0
LB apply : 3.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (55.4%)
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 | 4.3280e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.18552177983973 (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 : 6.14 us (2.8%)
patch tree reduce : 2.43 us (1.1%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 197.56 us (90.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (57.7%)
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 | 4.3398e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.44382419323831 (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.31 us (2.5%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 194.08 us (90.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.1%)
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.8100e+05 | 65536 | 2 | 1.720e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.9125040593755 (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.32 us (2.4%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 204.94 us (91.2%)
LB move op cnt : 0
LB apply : 2.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.0%)
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 | 4.4323e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.45566794801054 (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.73 us (2.8%)
patch tree reduce : 2.30 us (1.1%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.6%)
LB compute : 183.31 us (90.2%)
LB move op cnt : 0
LB apply : 3.00 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (53.8%)
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 | 6.0387e+05 | 65536 | 2 | 1.085e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.41511172389446 (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 : 5.14 us (2.5%)
patch tree reduce : 2.66 us (1.3%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 188.29 us (90.3%)
LB move op cnt : 0
LB apply : 3.43 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.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 | 6.1173e+05 | 65536 | 2 | 1.071e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 133.12603248528256 (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.70 us (2.5%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 211.81 us (91.3%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.1%)
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 | 5.8515e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.34116170695975 (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.59 us (2.4%)
patch tree reduce : 2.47 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 211.61 us (91.4%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (60.5%)
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 | 6.0767e+05 | 65536 | 2 | 1.078e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.24242537649332 (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 : 5.99 us (2.8%)
patch tree reduce : 2.36 us (1.1%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 190.20 us (90.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (54.8%)
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 | 6.1030e+05 | 65536 | 2 | 1.074e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.8148808054401 (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 : 8.39 us (3.9%)
patch tree reduce : 2.36 us (1.1%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 190.57 us (89.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (54.6%)
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 | 6.1123e+05 | 65536 | 2 | 1.072e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 133.01607845386675 (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.38 us (2.5%)
patch tree reduce : 2.24 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 191.54 us (90.7%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (55.7%)
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 | 5.9335e+05 | 65536 | 2 | 1.105e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.12423527558536 (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.45 us (2.3%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 218.62 us (91.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.0%)
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 | 6.0063e+05 | 65536 | 2 | 1.091e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.709284191103 (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.66 us (2.7%)
patch tree reduce : 2.31 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 188.18 us (90.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (55.7%)
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 | 5.9960e+05 | 65536 | 2 | 1.093e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.48467366182805 (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.77 us (2.5%)
patch tree reduce : 2.62 us (1.1%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 214.62 us (91.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (58.1%)
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 | 5.8760e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.87288492514968 (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.53 us (2.2%)
patch tree reduce : 2.48 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 229.28 us (91.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (58.2%)
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 | 5.9900e+05 | 65536 | 2 | 1.094e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.35488124645772 (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.88 us (2.6%)
patch tree reduce : 2.83 us (1.2%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 206.15 us (90.8%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (59.3%)
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 | 5.9896e+05 | 65536 | 2 | 1.094e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.34527833126972 (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.95 us (2.8%)
patch tree reduce : 2.62 us (1.2%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 190.01 us (90.2%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (56.5%)
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 | 5.8371e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.02811931667817 (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.59 us (2.6%)
patch tree reduce : 2.42 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 193.01 us (90.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (60.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 | 5.9745e+05 | 65536 | 2 | 1.097e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.01736402303206 (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.67 us (2.6%)
patch tree reduce : 2.33 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 195.01 us (90.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (60.6%)
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 | 6.0464e+05 | 65536 | 2 | 1.084e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.58113603946174 (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.26 us (2.6%)
patch tree reduce : 2.46 us (1.2%)
gen split merge : 1.13 us (0.6%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 182.35 us (90.2%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (55.4%)
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 | 5.9339e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.13436625264353 (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 : 5.79 us (2.7%)
patch tree reduce : 2.49 us (1.2%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 193.90 us (90.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (59.5%)
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 | 6.0438e+05 | 65536 | 2 | 1.084e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.52493843979155 (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 : 6.14 us (2.7%)
patch tree reduce : 2.53 us (1.1%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 204.06 us (90.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.9%)
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 | 6.0452e+05 | 65536 | 2 | 1.084e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.55497712096752 (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.52 us (2.6%)
patch tree reduce : 2.23 us (1.1%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 190.27 us (90.6%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (54.6%)
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 | 5.9070e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.54894701091862 (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.73 us (2.7%)
patch tree reduce : 2.34 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 194.36 us (90.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (61.1%)
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 | 6.0207e+05 | 65536 | 2 | 1.089e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.02346437180145 (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.46 us (2.5%)
patch tree reduce : 2.51 us (1.1%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 201.32 us (90.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (74.1%)
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 | 5.8610e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.54755571548048 (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.24 us (2.4%)
patch tree reduce : 2.32 us (1.1%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 200.35 us (90.9%)
LB move op cnt : 0
LB apply : 3.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (61.8%)
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 | 5.9190e+05 | 65536 | 2 | 1.107e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.80897722597436 (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.74 us (2.5%)
patch tree reduce : 2.37 us (1.0%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 213.08 us (91.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.6%)
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 | 6.0009e+05 | 65536 | 2 | 1.092e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.59176809952706 (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.24 us (2.0%)
patch tree reduce : 2.27 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 245.63 us (92.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (59.2%)
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 | 5.8574e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.46999495898496 (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.54 us (2.6%)
patch tree reduce : 2.56 us (1.2%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 190.50 us (90.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.6%)
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 | 5.8688e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.71717698970076 (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.64 us (2.7%)
patch tree reduce : 2.45 us (1.2%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 188.88 us (90.5%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.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 | 5.8586e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.49599429780784 (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 : 5.06 us (2.3%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 197.27 us (90.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (64.5%)
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 | 6.0324e+05 | 65536 | 2 | 1.086e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.27795565272945 (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.49 us (2.6%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 191.85 us (90.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (59.4%)
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 | 5.9809e+05 | 65536 | 2 | 1.096e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.15604939041276 (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.37 us (2.4%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 202.43 us (91.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.8%)
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 | 5.9116e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.64857106929472 (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.57 us (2.6%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 191.45 us (90.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (54.6%)
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 | 6.0141e+05 | 65536 | 2 | 1.090e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.88019987777506 (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.19 us (2.4%)
patch tree reduce : 2.39 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 197.83 us (91.1%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.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 | 6.0227e+05 | 65536 | 2 | 1.088e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.0657258269232 (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.46 us (2.6%)
patch tree reduce : 2.40 us (1.1%)
gen split merge : 1.40 us (0.7%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 193.09 us (90.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (66.6%)
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 | 5.9159e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.741514161861 (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.42 us (2.6%)
patch tree reduce : 2.29 us (1.1%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 189.02 us (90.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.2%)
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 | 5.9759e+05 | 65536 | 2 | 1.097e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.04736306279923 (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.67 us (2.7%)
patch tree reduce : 2.51 us (1.2%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 186.10 us (90.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.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 | 6.0489e+05 | 65536 | 2 | 1.083e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.63740257169206 (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 : 5.33 us (2.5%)
patch tree reduce : 2.57 us (1.2%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 189.37 us (90.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (53.6%)
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 | 5.7499e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.12957194538184 (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.38 us (2.1%)
patch tree reduce : 3.56 us (1.4%)
gen split merge : 1.52 us (0.6%)
split / merge op : 0/0
apply split merge : 1.93 us (0.7%)
LB compute : 237.75 us (91.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.7%)
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 | 5.8785e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.92793938578193 (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 : 5.37 us (1.9%)
patch tree reduce : 2.37 us (0.9%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 256.35 us (92.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (62.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 | 5.8670e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.677442776462 (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.18 us (2.5%)
patch tree reduce : 2.40 us (1.2%)
gen split merge : 892.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 188.07 us (90.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (61.3%)
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.6199e+05 | 65536 | 2 | 1.419e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.53942015489065 (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.64 us (2.5%)
patch tree reduce : 2.44 us (1.1%)
gen split merge : 1.29 us (0.6%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 204.01 us (91.0%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (57.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.5207e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.3789943874292 (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.77 us (2.5%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 213.48 us (91.3%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (57.4%)
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.5292e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.56531332291037 (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.39 us (2.0%)
patch tree reduce : 2.27 us (0.9%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 247.36 us (92.6%)
LB move op cnt : 0
LB apply : 3.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (60.6%)
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 | 5.5408e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.5789683481743 (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.77 us (2.3%)
patch tree reduce : 2.54 us (1.0%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 226.97 us (91.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (57.4%)
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 | 5.3887e+05 | 65536 | 2 | 1.216e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.2698758026618 (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.52 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.23 us (0.4%)
LB compute : 329.85 us (94.2%)
LB move op cnt : 0
LB apply : 3.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (53.9%)
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 | 6.0914e+05 | 65536 | 2 | 1.076e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.561831881266 (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.82 us (2.4%)
patch tree reduce : 2.66 us (1.1%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 223.04 us (90.9%)
LB move op cnt : 0
LB apply : 3.69 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (60.7%)
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 | 6.1383e+05 | 65536 | 2 | 1.068e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 133.58204976065792 (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 : 5.31 us (2.1%)
patch tree reduce : 2.36 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 227.98 us (92.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (62.8%)
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 | 5.2882e+05 | 65536 | 2 | 1.239e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.08273589849061 (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.31 us (2.3%)
patch tree reduce : 2.43 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 216.12 us (91.7%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (56.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 | 6.0547e+05 | 65536 | 2 | 1.082e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.7630009397479 (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 : 5.35 us (2.3%)
patch tree reduce : 2.50 us (1.1%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 208.14 us (91.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.3%)
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 | 6.0649e+05 | 65536 | 2 | 1.081e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.98602812693122 (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 : 5.46 us (2.2%)
patch tree reduce : 2.42 us (1.0%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 226.61 us (91.9%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.3%)
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 | 5.9535e+05 | 65536 | 2 | 1.101e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.5597410559345 (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.73 us (2.5%)
patch tree reduce : 2.44 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 210.98 us (91.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.9%)
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 | 5.8293e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.85693111354625 (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.37 us (2.2%)
patch tree reduce : 2.57 us (1.1%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 219.02 us (91.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.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 | 5.6480e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.9115730101475 (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.53 us (2.1%)
patch tree reduce : 2.65 us (1.0%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 240.40 us (92.1%)
LB move op cnt : 0
LB apply : 3.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.6%)
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 | 5.4004e+05 | 65536 | 2 | 1.214e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.5247450013721 (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.10 us (2.2%)
patch tree reduce : 2.35 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 208.00 us (91.6%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (59.3%)
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 | 6.0646e+05 | 65536 | 2 | 1.081e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.9776909277373 (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.07 us (2.1%)
patch tree reduce : 2.45 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 224.72 us (92.0%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.4%)
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 | 6.0535e+05 | 65536 | 2 | 1.083e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.73643073973446 (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.48 us (2.4%)
patch tree reduce : 2.53 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 212.91 us (91.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (58.2%)
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 | 6.0539e+05 | 65536 | 2 | 1.083e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.74541531773207 (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.38 us (2.1%)
patch tree reduce : 2.36 us (0.9%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 230.97 us (92.0%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.7%)
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 | 6.0341e+05 | 65536 | 2 | 1.086e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.31403074175603 (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.18 us (2.3%)
patch tree reduce : 2.50 us (1.1%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 207.98 us (91.6%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.0%)
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 | 4.9115e+05 | 65536 | 2 | 1.334e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.88517980208452 (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.58 us (2.5%)
patch tree reduce : 2.50 us (1.1%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 207.48 us (91.2%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (54.7%)
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 | 6.0486e+05 | 65536 | 2 | 1.083e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.6300109804242 (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 : 5.60 us (1.9%)
patch tree reduce : 2.67 us (0.9%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 270.51 us (92.8%)
LB move op cnt : 0
LB apply : 3.80 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (58.5%)
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 | 6.0644e+05 | 65536 | 2 | 1.081e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.97508532440827 (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.56 us (2.4%)
patch tree reduce : 2.52 us (1.1%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 216.58 us (91.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (55.2%)
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 | 6.0209e+05 | 65536 | 2 | 1.088e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.02761235922753 (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.27 us (2.0%)
patch tree reduce : 2.29 us (0.9%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 244.26 us (92.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (58.0%)
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 | 6.0232e+05 | 65536 | 2 | 1.088e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.0779021777909 (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.39 us (2.0%)
patch tree reduce : 2.53 us (1.0%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 246.50 us (92.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (58.2%)
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 | 6.1056e+05 | 65536 | 2 | 1.073e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.87039839449668 (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.27 us (1.9%)
patch tree reduce : 2.35 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 257.04 us (92.7%)
LB move op cnt : 0
LB apply : 3.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.4%)
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 | 6.0948e+05 | 65536 | 2 | 1.075e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.6366733774493 (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.61 us (2.4%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 213.86 us (91.5%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (52.8%)
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.4300e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.40627746270839 (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.99 us (2.4%)
patch tree reduce : 2.36 us (1.0%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 227.49 us (91.7%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (60.8%)
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 | 4.2954e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.47786495269223 (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.71 us (2.2%)
patch tree reduce : 2.30 us (0.9%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 235.03 us (91.9%)
LB move op cnt : 0
LB apply : 3.49 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.2%)
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.2183e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.79983484835627 (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.67 us (2.6%)
patch tree reduce : 2.40 us (1.1%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 199.96 us (91.0%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (53.5%)
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 | 3.9995e+05 | 65536 | 2 | 1.639e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.03884395140491 (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.32 us (1.4%)
patch tree reduce : 2.38 us (0.6%)
gen split merge : 1.31 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 357.57 us (94.8%)
LB move op cnt : 0
LB apply : 3.22 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.8%)
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.3128e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.85543364933383 (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.38 us (2.3%)
patch tree reduce : 2.55 us (1.1%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 215.62 us (91.6%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (55.0%)
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.3727e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.16064800661837 (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.90 us (2.4%)
patch tree reduce : 2.60 us (1.0%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 227.29 us (91.7%)
LB move op cnt : 0
LB apply : 3.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (51.2%)
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.3583e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.84649051045122 (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.59 us (2.7%)
patch tree reduce : 2.28 us (1.1%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 187.30 us (90.4%)
LB move op cnt : 0
LB apply : 2.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.8%)
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 | 6.0426e+05 | 65536 | 2 | 1.085e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.50023240848682 (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.45 us (2.3%)
patch tree reduce : 2.53 us (1.1%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 221.19 us (91.7%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (59.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 | 6.1352e+05 | 65536 | 2 | 1.068e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 133.51470218790107 (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.41 us (2.2%)
patch tree reduce : 2.50 us (1.0%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 227.24 us (91.7%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.5%)
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 | 5.8978e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.34916550141722 (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.55 us (2.5%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 205.04 us (91.2%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.1%)
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 | 5.4843e+05 | 65536 | 2 | 1.195e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.34975472621488 (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.51 us (2.3%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 217.73 us (91.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (62.3%)
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.5763e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.59107467575093 (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.16 us (2.2%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 211.04 us (91.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (52.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.4589e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.03661844273839 (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.46 us (2.3%)
patch tree reduce : 2.41 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 215.46 us (91.6%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.8%)
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.5568e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.16648219664056 (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.59 us (2.5%)
patch tree reduce : 2.39 us (1.1%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 199.80 us (90.7%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (53.2%)
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.4230e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.25542523101736 (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.64 us (2.4%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 218.26 us (91.7%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (62.0%)
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.4881e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.67078324761096 (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.22 us (2.0%)
patch tree reduce : 2.56 us (1.0%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 246.79 us (92.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.7%)
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.3005e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.58794040918117 (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.43 us (2.2%)
patch tree reduce : 2.41 us (1.0%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 225.39 us (91.7%)
LB move op cnt : 0
LB apply : 3.53 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (59.9%)
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.4560e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.97310708966411 (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.34 us (2.4%)
patch tree reduce : 2.46 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 201.22 us (91.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (55.1%)
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.4441e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.71472191577749 (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.80 us (2.6%)
patch tree reduce : 2.42 us (1.1%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 201.44 us (90.9%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.3%)
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.3764e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.24040611441619 (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.57 us (2.5%)
patch tree reduce : 2.53 us (1.2%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 199.85 us (90.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (58.3%)
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.4304e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.4160596837306 (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.58 us (2.3%)
patch tree reduce : 2.37 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 218.15 us (91.6%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.2%)
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.4679e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.23314192476565 (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.50 us (2.4%)
patch tree reduce : 2.42 us (1.1%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 197.98 us (86.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (61.1%)
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 | 4.4037e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.8339989632714 (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.17 us (2.2%)
patch tree reduce : 2.52 us (1.1%)
gen split merge : 1.30 us (0.6%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 211.47 us (91.2%)
LB move op cnt : 0
LB apply : 3.65 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (58.8%)
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 | 4.5122e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.19606071927224 (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.58 us (2.5%)
patch tree reduce : 2.39 us (1.1%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 205.58 us (91.3%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.4%)
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 | 4.4099e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.9701080989629 (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.57 us (2.4%)
patch tree reduce : 2.49 us (1.1%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 209.74 us (91.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (52.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 | 4.4549e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.94849397154962 (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.51 us (2.4%)
patch tree reduce : 2.36 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 207.39 us (91.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (53.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 | 4.4985e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.89798853185103 (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.35 us (2.3%)
patch tree reduce : 2.52 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 208.05 us (91.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.1%)
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 | 4.4560e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.97340929007314 (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.18 us (2.3%)
patch tree reduce : 2.60 us (1.1%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 207.07 us (91.4%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (53.8%)
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.3714e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.13315487705033 (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.52 us (2.1%)
patch tree reduce : 2.62 us (1.0%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 238.89 us (92.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (62.1%)
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.5258e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.49271516375268 (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.81 us (2.5%)
patch tree reduce : 2.33 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 215.14 us (91.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (59.8%)
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.4819e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.53672276909236 (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.56 us (2.2%)
patch tree reduce : 2.57 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 237.14 us (92.1%)
LB move op cnt : 0
LB apply : 3.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.1%)
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.2424e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.32604111276486 (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 : 6.07 us (2.5%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 219.86 us (91.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.8%)
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.4891e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.69457274600303 (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.44 us (2.3%)
patch tree reduce : 2.47 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 215.48 us (91.5%)
LB move op cnt : 0
LB apply : 2.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.5%)
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 | 4.3406e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.463497401943 (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.17 us (2.3%)
patch tree reduce : 2.64 us (1.2%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 204.83 us (91.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.0%)
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 | 4.6140e+05 | 65536 | 2 | 1.420e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.41279870613397 (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.21 us (2.4%)
patch tree reduce : 2.49 us (1.1%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 199.60 us (91.1%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (57.1%)
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 | 4.5674e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.39837157357088 (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.51 us (2.5%)
patch tree reduce : 2.36 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 202.75 us (91.1%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (53.2%)
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.5394e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.78857142625775 (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.16 us (2.2%)
patch tree reduce : 2.36 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 214.79 us (91.6%)
LB move op cnt : 0
LB apply : 3.50 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.8%)
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.3149e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.90462282840681 (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 (2.2%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 218.56 us (91.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (63.3%)
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.2423e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.3237512062034 (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.50 us (2.5%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 203.66 us (91.3%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.6%)
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 | 5.6061e+05 | 65536 | 2 | 1.169e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.0039222036839 (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.00 us (0.7%)
patch tree reduce : 2.49 us (0.3%)
gen split merge : 1.11 us (0.1%)
split / merge op : 0/0
apply split merge : 1.02 us (0.1%)
LB compute : 726.26 us (97.4%)
LB move op cnt : 0
LB apply : 3.23 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (60.3%)
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 | 5.5347e+05 | 65536 | 2 | 1.184e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.44885768273762 (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.38 us (2.5%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 192.73 us (90.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (54.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 | 5.8470e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.24649040656163 (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 : 4.87 us (2.2%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 203.94 us (91.4%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (60.4%)
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 | 5.6573e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.11924793798123 (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.46 us (2.3%)
patch tree reduce : 2.21 us (0.9%)
gen split merge : 1.48 us (0.6%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 220.62 us (91.7%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.4%)
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 | 5.6447e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.84510636378792 (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.73 us (2.7%)
patch tree reduce : 2.56 us (1.2%)
gen split merge : 1.30 us (0.6%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 191.81 us (90.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (56.6%)
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 | 5.7674e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.51483434034932 (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.31 us (2.2%)
patch tree reduce : 2.56 us (1.1%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 223.62 us (91.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.7%)
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.7758e+05 | 65536 | 2 | 1.372e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.9350637863918 (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 : 5.09 us (2.1%)
patch tree reduce : 2.28 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 224.42 us (92.0%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (58.2%)
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.5692e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.4380064016423 (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.48 us (2.4%)
patch tree reduce : 2.57 us (1.1%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 210.44 us (91.3%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (61.9%)
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.4264e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.33190451553537 (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.96 us (2.6%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 211.17 us (91.1%)
LB move op cnt : 0
LB apply : 3.52 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.8%)
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.4365e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.55113455355902 (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.13 us (2.3%)
patch tree reduce : 2.48 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 205.91 us (91.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (54.6%)
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.4968e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.86418786110032 (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.38 us (2.4%)
patch tree reduce : 2.40 us (1.1%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 207.40 us (91.4%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.1%)
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.4004e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.76651147933028 (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.88 us (2.6%)
patch tree reduce : 2.35 us (1.0%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 209.14 us (91.0%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (54.0%)
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.4931e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.78321453107282 (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.43 us (2.3%)
patch tree reduce : 2.61 us (1.1%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 218.81 us (91.6%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.4%)
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.5468e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.95076737277898 (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.35 us (2.3%)
patch tree reduce : 2.46 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 215.29 us (91.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (47.7%)
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.5992e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.09331060206702 (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 : 6.11 us (2.6%)
patch tree reduce : 2.49 us (1.0%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 217.25 us (91.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.7%)
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.6314e+05 | 65536 | 2 | 1.415e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.79365547298912 (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.15 us (2.2%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 210.61 us (91.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.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.5585e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.205787380171 (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.33 us (2.3%)
patch tree reduce : 2.53 us (1.1%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 211.33 us (91.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (54.3%)
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.6190e+05 | 65536 | 2 | 1.419e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.52407487470927 (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.61 us (2.1%)
patch tree reduce : 2.42 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 251.58 us (92.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.5%)
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 | 6.0085e+05 | 65536 | 2 | 1.091e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.76307814631676 (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.42 us (1.5%)
patch tree reduce : 2.56 us (0.7%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 338.81 us (94.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (64.1%)
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 | 5.7823e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.84045675950351 (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.52 us (2.0%)
patch tree reduce : 2.35 us (0.9%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 250.49 us (92.7%)
LB move op cnt : 0
LB apply : 3.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (56.2%)
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 | 4.9282e+05 | 65536 | 2 | 1.330e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.25428254751559 (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.21 us (2.1%)
patch tree reduce : 2.44 us (1.0%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 223.04 us (92.0%)
LB move op cnt : 0
LB apply : 2.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (61.6%)
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 | 5.5802e+05 | 65536 | 2 | 1.174e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.442313197225 (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.51 us (2.6%)
patch tree reduce : 2.36 us (1.1%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 188.10 us (90.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (59.2%)
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 | 5.9528e+05 | 65536 | 2 | 1.101e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.5516155933787 (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.34 us (2.5%)
patch tree reduce : 2.39 us (1.1%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 193.58 us (90.7%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (54.1%)
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 | 6.0176e+05 | 65536 | 2 | 1.089e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.9629045373312 (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.60 us (1.0%)
patch tree reduce : 2.55 us (0.5%)
gen split merge : 1.15 us (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.2%)
LB compute : 541.66 us (96.4%)
LB move op cnt : 0
LB apply : 3.27 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (61.6%)
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 | 5.7675e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.51950077195941 (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.64 us (2.7%)
patch tree reduce : 2.36 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 190.66 us (90.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (56.6%)
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 | 5.6762e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.53311121912084 (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.57 us (2.6%)
patch tree reduce : 2.57 us (1.2%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 193.81 us (90.6%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (55.2%)
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 | 5.6266e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.45461709257324 (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.38 us (2.4%)
patch tree reduce : 2.37 us (1.1%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 204.59 us (91.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (59.3%)
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.7697e+05 | 65536 | 2 | 1.374e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.80549105109102 (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.61 us (2.7%)
patch tree reduce : 2.48 us (1.2%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 188.37 us (90.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.6%)
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 | 5.5722e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.26916064124214 (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.49 us (2.3%)
patch tree reduce : 2.55 us (1.1%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 222.67 us (91.7%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.6%)
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 | 5.8236e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.74067620507299 (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.67 us (2.7%)
patch tree reduce : 2.26 us (1.1%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 188.67 us (88.5%)
LB move op cnt : 0
LB apply : 6.30 us (3.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (55.5%)
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 | 5.7758e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.70264221666388 (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.58 us (2.8%)
patch tree reduce : 2.30 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 180.99 us (90.2%)
LB move op cnt : 0
LB apply : 2.97 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.5%)
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 | 5.6955e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.95382756660302 (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.11 us (2.5%)
patch tree reduce : 2.31 us (1.1%)
gen split merge : 981.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 188.40 us (90.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (55.3%)
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 | 5.7602e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.36358194378423 (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.44 us (2.2%)
patch tree reduce : 2.46 us (1.0%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 230.73 us (92.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.4%)
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 | 5.5289e+05 | 65536 | 2 | 1.185e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.32963886889556 (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.48 us (2.6%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 192.06 us (90.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (60.8%)
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 | 5.7110e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.29291656420514 (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.15 us (2.3%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 206.63 us (91.3%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (59.1%)
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 | 5.9370e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.20999583159815 (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.43 us (2.6%)
patch tree reduce : 2.38 us (1.1%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 189.95 us (90.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.0%)
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 | 6.0901e+05 | 65536 | 2 | 1.076e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.54349836224128 (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.48 us (2.7%)
patch tree reduce : 2.60 us (1.3%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 185.45 us (90.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (51.9%)
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 | 6.0957e+05 | 65536 | 2 | 1.075e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.66517966091456 (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.71 us (2.5%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 205.81 us (90.8%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (60.8%)
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 | 5.6322e+05 | 65536 | 2 | 1.164e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.57861590352141 (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.38 us (2.3%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 218.74 us (91.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.0%)
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 | 4.5082e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.11608429612761 (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.44 us (2.6%)
patch tree reduce : 2.47 us (1.2%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 188.88 us (90.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (54.3%)
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 | 4.8927e+05 | 65536 | 2 | 1.339e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.48382000443544 (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.56 us (2.7%)
patch tree reduce : 2.31 us (1.1%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 188.56 us (90.5%)
LB move op cnt : 0
LB apply : 3.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (55.1%)
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.4309e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.4349231777781 (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.12 us (2.2%)
patch tree reduce : 2.40 us (1.0%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 209.91 us (91.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.2%)
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 | 5.8437e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.18160294135096 (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.35 us (2.7%)
patch tree reduce : 2.50 us (1.3%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 178.10 us (90.1%)
LB move op cnt : 0
LB apply : 2.87 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.4%)
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 | 6.0956e+05 | 65536 | 2 | 1.075e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.6646980065366 (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.34 us (2.3%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 210.52 us (91.4%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (52.8%)
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.9530e+05 | 65536 | 2 | 1.323e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.79641056993144 (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.71 us (2.7%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 193.56 us (90.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (53.0%)
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 | 5.0915e+05 | 65536 | 2 | 1.287e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.81266998086572 (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.24 us (2.3%)
patch tree reduce : 2.52 us (1.1%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 208.00 us (91.2%)
LB move op cnt : 0
LB apply : 3.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (62.3%)
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 | 6.0316e+05 | 65536 | 2 | 1.087e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.27309865539056 (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 : 4.98 us (2.0%)
patch tree reduce : 2.28 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 233.94 us (92.4%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (59.4%)
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 | 6.0447e+05 | 65536 | 2 | 1.084e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.55759160493344 (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.49 us (2.7%)
patch tree reduce : 2.28 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.5%)
LB compute : 184.79 us (90.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.3%)
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 | 6.0735e+05 | 65536 | 2 | 1.079e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.18474208327893 (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 : 5.34 us (2.5%)
patch tree reduce : 2.51 us (1.2%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 190.56 us (90.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.3%)
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 | 5.8786e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.94433967396523 (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.58 us (2.6%)
patch tree reduce : 2.32 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 192.06 us (90.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (55.2%)
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 | 6.0072e+05 | 65536 | 2 | 1.091e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.74364933842006 (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.30 us (2.5%)
patch tree reduce : 2.32 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.5%)
LB compute : 192.12 us (90.8%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.1%)
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 | 5.9399e+05 | 65536 | 2 | 1.103e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.27824123142162 (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 (2.6%)
patch tree reduce : 2.42 us (1.2%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 181.45 us (90.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.7%)
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 | 5.8655e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.6594453821285 (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 : 9.47 us (4.4%)
patch tree reduce : 2.40 us (1.1%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 188.94 us (88.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (60.2%)
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 | 5.9471e+05 | 65536 | 2 | 1.102e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.4348953165439 (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.52 us (2.6%)
patch tree reduce : 2.35 us (1.1%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 188.46 us (90.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (54.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 | 5.8930e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.2594000164984 (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.70 us (2.5%)
patch tree reduce : 2.33 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 205.10 us (90.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (59.1%)
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 | 5.9848e+05 | 65536 | 2 | 1.095e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.2565706020544 (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 : 5.35 us (2.5%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 191.42 us (90.3%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.7%)
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 | 5.8362e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.0241296444365 (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.50 us (2.8%)
patch tree reduce : 2.40 us (1.2%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.6%)
LB compute : 176.18 us (89.9%)
LB move op cnt : 0
LB apply : 2.94 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (55.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 | 5.9666e+05 | 65536 | 2 | 1.098e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.86234448333124 (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.61 us (2.3%)
patch tree reduce : 2.56 us (1.1%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 222.91 us (91.7%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (62.4%)
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 | 5.7876e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.96700636561268 (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 : 5.44 us (2.6%)
patch tree reduce : 2.26 us (1.1%)
gen split merge : 1.14 us (0.6%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 187.78 us (90.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (58.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 | 5.9658e+05 | 65536 | 2 | 1.099e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.84585274376343 (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.28 us (2.5%)
patch tree reduce : 2.34 us (1.1%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 191.60 us (90.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (58.6%)
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 | 6.0830e+05 | 65536 | 2 | 1.077e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.39649819618268 (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.01 us (2.1%)
patch tree reduce : 2.48 us (1.0%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 223.67 us (92.0%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (58.0%)
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 | 6.0200e+05 | 65536 | 2 | 1.089e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.02533280828533 (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.33 us (2.0%)
patch tree reduce : 2.38 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 239.15 us (91.3%)
LB move op cnt : 0
LB apply : 5.40 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.9%)
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 | 6.0324e+05 | 65536 | 2 | 1.086e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.29632185483356 (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.46 us (2.2%)
patch tree reduce : 2.42 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 224.92 us (91.9%)
LB move op cnt : 0
LB apply : 3.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (62.4%)
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.5201e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.37944879570736 (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.61 us (2.2%)
patch tree reduce : 2.51 us (1.0%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 236.83 us (92.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (61.8%)
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 | 5.9291e+05 | 65536 | 2 | 1.105e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.04885063998913 (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 : 6.63 us (2.8%)
patch tree reduce : 3.88 us (1.6%)
gen split merge : 1.68 us (0.7%)
split / merge op : 0/0
apply split merge : 1.71 us (0.7%)
LB compute : 213.26 us (89.6%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.1%)
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.5300e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.59728524381555 (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.53 us (2.2%)
patch tree reduce : 2.26 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 236.37 us (92.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (52.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.5496e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.02266909963521 (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.61 us (2.1%)
patch tree reduce : 2.44 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 246.04 us (92.5%)
LB move op cnt : 0
LB apply : 3.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (61.0%)
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 | 6.0974e+05 | 65536 | 2 | 1.075e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.71138116381266 (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.14 us (2.2%)
patch tree reduce : 2.54 us (1.1%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 212.67 us (91.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.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 | 6.0271e+05 | 65536 | 2 | 1.087e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.18189878539107 (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.55 us (2.1%)
patch tree reduce : 2.32 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 243.00 us (92.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (63.4%)
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 | 5.9993e+05 | 65536 | 2 | 1.092e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.5777150565329 (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.40 us (2.2%)
patch tree reduce : 2.30 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 224.16 us (91.7%)
LB move op cnt : 0
LB apply : 3.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (59.6%)
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 | 5.9598e+05 | 65536 | 2 | 1.100e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.71800550209605 (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.38 us (2.1%)
patch tree reduce : 2.66 us (1.0%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 234.80 us (92.1%)
LB move op cnt : 0
LB apply : 3.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.3%)
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 | 5.4308e+05 | 65536 | 2 | 1.207e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.20376842172409 (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.94 us (2.6%)
patch tree reduce : 2.63 us (1.2%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 207.37 us (90.9%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (54.3%)
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 | 6.0859e+05 | 65536 | 2 | 1.077e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.4643229522982 (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.43 us (2.0%)
patch tree reduce : 2.43 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 250.09 us (92.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (54.7%)
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.6790e+05 | 65536 | 2 | 1.401e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.84210707966552 (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 : 6.51 us (2.7%)
patch tree reduce : 2.99 us (1.3%)
gen split merge : 1.41 us (0.6%)
split / merge op : 0/0
apply split merge : 1.50 us (0.6%)
LB compute : 214.65 us (90.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (47.4%)
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.6917e+05 | 65536 | 2 | 1.397e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.11945858436472 (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 : 5.92 us (2.1%)
patch tree reduce : 2.38 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 256.58 us (92.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (60.4%)
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 | 6.0243e+05 | 65536 | 2 | 1.088e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.12366201553826 (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.66 us (2.5%)
patch tree reduce : 2.45 us (1.1%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 209.58 us (91.1%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.9%)
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.5277e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.5495258973682 (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.51 us (2.4%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 214.45 us (91.6%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (56.0%)
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 | 4.4856e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.63382366831193 (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 (2.3%)
patch tree reduce : 2.51 us (1.1%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 206.87 us (91.2%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (54.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.4992e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.93064312878805 (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 : 5.80 us (2.6%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 205.54 us (91.1%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.3%)
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.5233e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.45576158748324 (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.53 us (2.4%)
patch tree reduce : 2.35 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 214.06 us (91.4%)
LB move op cnt : 0
LB apply : 2.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.1%)
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 | 4.5112e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.19188569505026 (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.23 us (2.2%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 220.43 us (91.8%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.6%)
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.5089e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.1418849838027 (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.47 us (2.4%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 204.48 us (91.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.6%)
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 | 6.0285e+05 | 65536 | 2 | 1.087e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.21851755525722 (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.93 us (2.6%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 207.48 us (91.2%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.5%)
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 | 6.1453e+05 | 65536 | 2 | 1.066e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 133.7614382478563 (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.55 us (2.5%)
patch tree reduce : 2.49 us (1.1%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 206.47 us (91.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (54.8%)
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.5080e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.12386528932525 (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 : 2.26 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 303.57 us (93.6%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (67.6%)
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 | 5.7798e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.80688599952613 (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.55 us (2.3%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 225.88 us (91.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (55.7%)
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 | 5.0973e+05 | 65536 | 2 | 1.286e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.95123104166862 (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 : 5.43 us (2.4%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 208.67 us (91.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (54.6%)
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 | 6.1021e+05 | 65536 | 2 | 1.074e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.82417188264603 (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.35 us (2.2%)
patch tree reduce : 2.58 us (1.1%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 221.83 us (91.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (59.7%)
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 | 6.0275e+05 | 65536 | 2 | 1.087e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.2003466913926 (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 : 5.48 us (2.3%)
patch tree reduce : 2.23 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 223.19 us (91.9%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.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.5612e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.28410491167239 (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.70 us (2.4%)
patch tree reduce : 2.47 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 216.64 us (91.5%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (53.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 | 4.7300e+05 | 65536 | 2 | 1.386e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.9581802959629 (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.19 us (2.6%)
patch tree reduce : 2.39 us (1.2%)
gen split merge : 1.29 us (0.6%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 178.49 us (89.7%)
LB move op cnt : 0
LB apply : 2.92 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.7%)
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.9570e+05 | 65536 | 2 | 1.322e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.89895408096214 (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.41 us (2.3%)
patch tree reduce : 2.52 us (1.1%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 214.84 us (91.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.7%)
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 | 6.1516e+05 | 65536 | 2 | 1.065e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 133.90368781486455 (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 : 4.99 us (2.3%)
patch tree reduce : 2.65 us (1.2%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 194.73 us (90.8%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (59.2%)
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 | 5.9247e+05 | 65536 | 2 | 1.106e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.96578389647567 (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.56 us (2.5%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 204.31 us (91.2%)
LB move op cnt : 0
LB apply : 2.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.1%)
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.5861e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.82848483311929 (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 : 5.51 us (2.6%)
patch tree reduce : 2.39 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 190.07 us (90.6%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (61.9%)
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 | 5.9461e+05 | 65536 | 2 | 1.102e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.43228224177213 (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 : 6.12 us (2.6%)
patch tree reduce : 2.36 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 216.19 us (91.1%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (54.6%)
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 | 6.2167e+05 | 65536 | 2 | 1.054e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 135.32364158386605 (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.67 us (2.3%)
patch tree reduce : 2.27 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 221.56 us (91.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.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 | 5.3055e+05 | 65536 | 2 | 1.235e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.4877934161119 (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.46 us (2.4%)
patch tree reduce : 2.34 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 210.21 us (91.5%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (56.5%)
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 | 6.0895e+05 | 65536 | 2 | 1.076e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.55620592974367 (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 : 5.25 us (2.3%)
patch tree reduce : 2.61 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 207.85 us (91.3%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (51.5%)
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 | 6.0885e+05 | 65536 | 2 | 1.076e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.53361041344417 (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.72 us (2.8%)
patch tree reduce : 2.42 us (1.2%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 186.37 us (90.1%)
LB move op cnt : 0
LB apply : 2.93 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (55.2%)
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 | 6.1897e+05 | 65536 | 2 | 1.059e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 134.73649790768394 (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.63 us (2.5%)
patch tree reduce : 2.35 us (1.0%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 205.70 us (91.2%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.3%)
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 | 6.1209e+05 | 65536 | 2 | 1.071e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 133.24049985211965 (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.54 us (2.1%)
patch tree reduce : 2.34 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 242.05 us (92.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.9%)
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 | 5.7152e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.40974273173232 (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.15 us (2.0%)
patch tree reduce : 2.29 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 240.34 us (92.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (55.2%)
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 | 6.0650e+05 | 65536 | 2 | 1.081e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.02454483906294 (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.24 us (2.2%)
patch tree reduce : 2.64 us (1.1%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 213.76 us (91.5%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (56.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 | 6.0249e+05 | 65536 | 2 | 1.088e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.1519153847564 (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.25 us (2.3%)
patch tree reduce : 2.51 us (1.1%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 205.48 us (91.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.9%)
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 | 4.7499e+05 | 65536 | 2 | 1.380e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.39726561711866 (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.22 us (2.5%)
patch tree reduce : 2.44 us (1.2%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 186.71 us (90.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (48.3%)
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.6625e+05 | 65536 | 2 | 1.406e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.49664877593418 (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.55 us (2.6%)
patch tree reduce : 2.42 us (1.1%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 196.54 us (90.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (61.2%)
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 | 5.7610e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.40955847593118 (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.51 us (2.6%)
patch tree reduce : 2.27 us (1.1%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 190.21 us (90.4%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.4%)
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 | 5.8065e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.40042253602977 (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 : 10.76 us (4.2%)
patch tree reduce : 2.31 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 233.51 us (90.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.8%)
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 | 5.5573e+05 | 65536 | 2 | 1.179e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.97716428938936 (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.69 us (2.1%)
patch tree reduce : 2.28 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 247.99 us (92.6%)
LB move op cnt : 0
LB apply : 3.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.3%)
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 | 5.8383e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.09325948272372 (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.48 us (2.3%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 222.72 us (92.1%)
LB move op cnt : 0
LB apply : 2.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (52.0%)
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 | 5.6817e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.68474310514716 (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.78 us (2.5%)
patch tree reduce : 2.33 us (1.0%)
gen split merge : 882.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 209.46 us (91.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (53.3%)
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 | 5.5153e+05 | 65536 | 2 | 1.188e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.06352347151865 (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.66 us (2.4%)
patch tree reduce : 2.54 us (1.1%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 214.48 us (91.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.5%)
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.7986e+05 | 65536 | 2 | 1.366e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.46237514143324 (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.29 us (2.2%)
patch tree reduce : 2.46 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 219.48 us (91.8%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (60.8%)
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.9651e+05 | 65536 | 2 | 1.320e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.08818630542717 (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.36 us (2.3%)
patch tree reduce : 2.48 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 217.59 us (91.7%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (55.7%)
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 | 5.7413e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.98610795989349 (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.60 us (2.3%)
patch tree reduce : 2.22 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 218.74 us (91.7%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.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 | 5.2462e+05 | 65536 | 2 | 1.249e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.20726223332896 (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.33 us (2.0%)
patch tree reduce : 2.39 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 253.42 us (92.8%)
LB move op cnt : 0
LB apply : 3.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.6%)
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 | 6.0423e+05 | 65536 | 2 | 1.085e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.5398578734389 (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.41 us (2.6%)
patch tree reduce : 2.41 us (1.2%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 189.10 us (90.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.0%)
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 | 6.0574e+05 | 65536 | 2 | 1.082e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.8699356639372 (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.53 us (2.4%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 206.76 us (91.3%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (59.9%)
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 | 6.1153e+05 | 65536 | 2 | 1.072e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 133.1307087453835 (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.52 us (2.4%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 205.32 us (91.1%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.5%)
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.5857e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.83239468608075 (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.24 us (2.6%)
patch tree reduce : 2.25 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 186.02 us (90.8%)
LB move op cnt : 0
LB apply : 2.89 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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 | 5.8171e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.64036393036479 (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.70 us (2.4%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 218.61 us (91.8%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.5%)
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 | 3.3648e+05 | 65536 | 2 | 1.948e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.25302950006169 (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.85 us (2.6%)
patch tree reduce : 2.61 us (1.2%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 203.76 us (91.0%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (56.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 | 5.7941e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.14150031320743 (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 : 5.42 us (2.6%)
patch tree reduce : 2.64 us (1.3%)
gen split merge : 1.14 us (0.6%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 186.65 us (90.3%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.2%)
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 | 5.5929e+05 | 65536 | 2 | 1.172e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.76016682541763 (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.65 us (2.2%)
patch tree reduce : 2.34 us (0.9%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 242.21 us (92.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (62.2%)
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.8551e+05 | 65536 | 2 | 1.350e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.69992899175682 (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.59 us (2.3%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 226.24 us (91.9%)
LB move op cnt : 0
LB apply : 3.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.1%)
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 | 5.9044e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.5434029827299 (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.58 us (2.5%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 204.20 us (91.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (52.9%)
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 | 5.1723e+05 | 65536 | 2 | 1.267e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.60620536239345 (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.65 us (2.1%)
patch tree reduce : 2.47 us (0.9%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 244.35 us (92.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.6%)
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 | 5.9467e+05 | 65536 | 2 | 1.102e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.46606631167407 (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.72 us (2.0%)
patch tree reduce : 2.48 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 263.56 us (92.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (61.7%)
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 | 5.5951e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.81313957265782 (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.51 us (1.9%)
patch tree reduce : 2.39 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 262.71 us (92.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (59.7%)
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.5059e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.0992871058067 (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.41 us (2.1%)
patch tree reduce : 2.51 us (1.0%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 242.43 us (92.4%)
LB move op cnt : 0
LB apply : 3.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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.5564e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.19862351242539 (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.35 us (2.2%)
patch tree reduce : 2.28 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 223.99 us (91.8%)
LB move op cnt : 0
LB apply : 3.64 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.7%)
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.4717e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.35724861510748 (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.31 us (2.3%)
patch tree reduce : 2.49 us (1.1%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 214.19 us (91.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (53.6%)
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 | 4.6756e+05 | 65536 | 2 | 1.402e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.79528869428111 (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.37 us (2.2%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 207.36 us (86.9%)
LB move op cnt : 0
LB apply : 14.97 us (6.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (59.4%)
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.4566e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.0293406575785 (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.72 us (2.6%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 203.94 us (91.1%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (55.8%)
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.5768e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.64622015301097 (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.29 us (2.4%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 205.13 us (91.3%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (53.5%)
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.3856e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.48400103274132 (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.48 us (2.3%)
patch tree reduce : 2.50 us (1.1%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 217.32 us (91.8%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (55.4%)
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 | 4.2875e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.34857648458716 (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.62 us (2.4%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 213.13 us (91.5%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.8%)
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 | 4.1192e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.68461247068788 (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.28 us (2.2%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 217.46 us (90.8%)
LB move op cnt : 0
LB apply : 5.64 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (53.3%)
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 | 4.2349e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.20432186113634 (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.96 us (2.4%)
patch tree reduce : 2.34 us (1.0%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 223.84 us (91.9%)
LB move op cnt : 0
LB apply : 3.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (55.1%)
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 | 4.1869e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.16050657489401 (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.32 us (2.2%)
patch tree reduce : 2.37 us (1.0%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 222.08 us (91.8%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.1%)
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 | 4.2429e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.37911486633905 (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.21 us (2.2%)
patch tree reduce : 2.33 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 222.21 us (91.9%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.9%)
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 | 4.8587e+05 | 65536 | 2 | 1.349e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.78776927219857 (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.75 us (2.3%)
patch tree reduce : 2.50 us (1.0%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 232.95 us (92.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.5%)
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 | 5.7667e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.55840380333528 (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.33 us (2.6%)
patch tree reduce : 2.42 us (1.2%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 187.72 us (90.4%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (59.5%)
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 | 4.3945e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.68359296107155 (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.36 us (2.0%)
patch tree reduce : 2.41 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 242.44 us (92.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.2%)
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.5913e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.96755434264607 (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.35 us (2.5%)
patch tree reduce : 2.58 us (1.2%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 197.26 us (90.7%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (55.6%)
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 | 4.5744e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.60156604884845 (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.68 us (2.5%)
patch tree reduce : 2.43 us (1.1%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 206.49 us (91.1%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.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 | 6.0326e+05 | 65536 | 2 | 1.086e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.35156730786878 (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.27 us (2.3%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 204.95 us (91.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (54.8%)
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 | 6.0947e+05 | 65536 | 2 | 1.075e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.70616876996255 (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 : 5.48 us (2.6%)
patch tree reduce : 2.80 us (1.3%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 190.60 us (90.3%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (53.3%)
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 | 5.9574e+05 | 65536 | 2 | 1.100e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.71662591083378 (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.64 us (2.7%)
patch tree reduce : 2.67 us (1.3%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 191.31 us (90.3%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (55.4%)
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 | 6.0473e+05 | 65536 | 2 | 1.084e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.6756251458572 (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.27 us (2.2%)
patch tree reduce : 2.26 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 220.06 us (91.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.6%)
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.3895e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.57781489236254 (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.15 us (2.2%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 218.45 us (91.7%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.9%)
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.0770e+05 | 65536 | 2 | 1.607e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.77531922987333 (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.33 us (2.4%)
patch tree reduce : 2.49 us (1.1%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 204.35 us (91.0%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (60.0%)
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.1884e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.20104425212425 (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.55 us (2.6%)
patch tree reduce : 2.58 us (1.2%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 195.13 us (90.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (51.2%)
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.2673e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.91909704223174 (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.51 us (2.3%)
patch tree reduce : 2.43 us (1.0%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 219.78 us (91.8%)
LB move op cnt : 0
LB apply : 2.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.3%)
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.2226e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.94707562556094 (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.31 us (2.3%)
patch tree reduce : 2.53 us (1.1%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 208.61 us (91.5%)
LB move op cnt : 0
LB apply : 2.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (56.4%)
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.2601e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.76461551703629 (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.49 us (2.4%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 211.99 us (91.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (59.5%)
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.3532e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.7911076421342 (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.74 us (2.5%)
patch tree reduce : 2.49 us (1.1%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 210.65 us (91.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (50.6%)
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.3956e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.71617485711968 (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 : 7.12 us (2.7%)
patch tree reduce : 2.95 us (1.1%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 237.28 us (91.2%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (58.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.3450e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.6140822596675 (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.54 us (2.2%)
patch tree reduce : 2.30 us (0.9%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 236.20 us (92.2%)
LB move op cnt : 0
LB apply : 3.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (58.0%)
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.3912e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.62157944078925 (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.72 us (2.5%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 211.70 us (91.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (56.4%)
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.3472e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.66455867602494 (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.67 us (2.4%)
patch tree reduce : 2.45 us (1.1%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 212.94 us (91.5%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.7%)
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.2936e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.49796126127102 (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.37 us (2.2%)
patch tree reduce : 2.49 us (1.0%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 225.43 us (91.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (61.0%)
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.4053e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.93140450894373 (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.12 us (2.1%)
patch tree reduce : 2.23 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 220.06 us (91.9%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (54.6%)
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.4333e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.54155264801393 (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 : 5.57 us (2.3%)
patch tree reduce : 2.26 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 226.62 us (91.9%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (58.1%)
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.3217e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.11218582908853 (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 (2.3%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 216.58 us (91.8%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.2%)
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.3314e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.3247335916081 (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.29 us (2.3%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 210.54 us (91.7%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (50.6%)
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.1077e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.45386525873008 (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.41 us (2.3%)
patch tree reduce : 2.35 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 215.28 us (91.5%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (53.9%)
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.0116e+05 | 65536 | 2 | 1.634e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.36062792871338 (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.40 us (2.4%)
patch tree reduce : 2.36 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 205.56 us (91.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (59.9%)
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.0364e+05 | 65536 | 2 | 1.624e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.9012101605989 (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.52 us (2.5%)
patch tree reduce : 2.36 us (1.1%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 203.12 us (90.9%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (54.4%)
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 | 3.9908e+05 | 65536 | 2 | 1.642e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.90944921756407 (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.76 us (2.6%)
patch tree reduce : 2.50 us (1.1%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 203.38 us (91.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.9%)
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 | 4.0747e+05 | 65536 | 2 | 1.608e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.73757012414103 (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.63 us (2.5%)
patch tree reduce : 2.64 us (1.2%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 208.09 us (91.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.7%)
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 | 4.0530e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.26604079503524 (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.35 us (2.0%)
patch tree reduce : 2.61 us (1.0%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 245.04 us (92.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (60.2%)
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 | 4.0522e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.24896714455997 (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 : 6.03 us (2.6%)
patch tree reduce : 2.65 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 210.53 us (91.1%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (54.9%)
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.0294e+05 | 65536 | 2 | 1.626e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.7530769264273 (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.49 us (2.3%)
patch tree reduce : 2.51 us (1.0%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 222.18 us (91.7%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (59.8%)
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.0655e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.53880502179194 (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.41 us (1.9%)
patch tree reduce : 2.47 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 259.65 us (92.9%)
LB move op cnt : 0
LB apply : 3.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (58.6%)
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.0533e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.27369137312071 (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.55 us (2.3%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 216.87 us (91.6%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (63.2%)
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 | 4.0601e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.42347385456699 (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.72 us (2.2%)
patch tree reduce : 2.51 us (1.0%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 233.18 us (91.7%)
LB move op cnt : 0
LB apply : 3.53 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (59.5%)
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.0561e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.33814298995728 (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.32 us (2.3%)
patch tree reduce : 2.50 us (1.1%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 215.93 us (91.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.2%)
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.0456e+05 | 65536 | 2 | 1.620e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.1094202433242 (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.83 us (2.5%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 215.38 us (91.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (50.8%)
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.0371e+05 | 65536 | 2 | 1.623e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.92375419533634 (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.53 us (2.1%)
patch tree reduce : 2.38 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 244.34 us (92.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (57.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 | 3.9107e+05 | 65536 | 2 | 1.676e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.17188348950927 (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.20 us (2.1%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 224.12 us (91.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.3%)
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 | 3.8230e+05 | 65536 | 2 | 1.714e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.26334108962925 (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.47 us (2.1%)
patch tree reduce : 2.38 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 241.44 us (92.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (62.3%)
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 | 3.8426e+05 | 65536 | 2 | 1.706e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.6913877912466 (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.74 us (2.4%)
patch tree reduce : 2.26 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 219.84 us (91.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (45.9%)
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 | 3.7981e+05 | 65536 | 2 | 1.725e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.72214837918388 (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.68 us (2.3%)
patch tree reduce : 2.33 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 222.26 us (91.7%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.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 | 3.4731e+05 | 65536 | 2 | 1.887e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.64471511695749 (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.43 us (2.3%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 219.98 us (91.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (61.2%)
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 | 3.9962e+05 | 65536 | 2 | 1.640e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.03955920519591 (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.20 us (2.0%)
patch tree reduce : 2.21 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 234.69 us (92.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (54.8%)
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 | 3.9710e+05 | 65536 | 2 | 1.650e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.48976591963151 (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.14 us (2.3%)
patch tree reduce : 2.51 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 205.94 us (90.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (53.4%)
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.0076e+05 | 65536 | 2 | 1.635e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.28848739839697 (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.29 us (2.3%)
patch tree reduce : 2.33 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 208.32 us (91.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (55.7%)
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 | 3.9589e+05 | 65536 | 2 | 1.655e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.22903023637669 (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 : 6.92 us (2.9%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 220.12 us (91.2%)
LB move op cnt : 0
LB apply : 3.75 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.9%)
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 | 3.9825e+05 | 65536 | 2 | 1.646e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.74314832512466 (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.42 us (2.3%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 212.35 us (91.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.3%)
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.0075e+05 | 65536 | 2 | 1.635e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.28804863426227 (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.43 us (2.4%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 209.44 us (91.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (54.3%)
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 | 3.6884e+05 | 65536 | 2 | 1.777e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.33910584989228 (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.35 us (2.4%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 199.64 us (91.1%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.2%)
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.2216e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.95278617438454 (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.17 us (1.9%)
patch tree reduce : 2.44 us (0.9%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 256.57 us (92.9%)
LB move op cnt : 0
LB apply : 3.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.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.2697e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.00122042430256 (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.29 us (2.3%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 209.24 us (91.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.6%)
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.1841e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.13873211757708 (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 : 5.21 us (2.2%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 220.62 us (91.9%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (56.1%)
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.2582e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.75359252513518 (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.14 us (2.2%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 210.48 us (91.7%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (53.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 | 3.8163e+05 | 65536 | 2 | 1.717e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.12831459285503 (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.34 us (2.2%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 225.77 us (92.2%)
LB move op cnt : 0
LB apply : 3.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (55.1%)
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.0252e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.67884584532715 (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.93 us (2.6%)
patch tree reduce : 2.58 us (1.1%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 209.99 us (90.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (56.9%)
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.2272e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.08003703609945 (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 : 6.17 us (2.6%)
patch tree reduce : 2.91 us (1.2%)
gen split merge : 1.39 us (0.6%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 211.20 us (90.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (57.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.2560e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.70953558383955 (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.17 us (1.7%)
patch tree reduce : 2.40 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 277.91 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.26 us (62.1%)
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 | 4.1271e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.90182682474521 (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.40 us (2.2%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 222.90 us (91.8%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.9%)
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.2217e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.96316072170875 (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.16 us (2.1%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 218.33 us (90.9%)
LB move op cnt : 0
LB apply : 5.16 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (60.4%)
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.2539e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.66602173282382 (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 : 5.18 us (2.3%)
patch tree reduce : 2.50 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 207.56 us (91.4%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (59.1%)
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.2565e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.72248215141484 (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.58 us (2.5%)
patch tree reduce : 2.46 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 201.15 us (91.0%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (59.5%)
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.2661e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.93407138607772 (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.03 us (2.1%)
patch tree reduce : 3.53 us (1.5%)
gen split merge : 1.42 us (0.6%)
split / merge op : 0/0
apply split merge : 1.85 us (0.8%)
LB compute : 217.41 us (90.7%)
LB move op cnt : 0
LB apply : 2.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (54.1%)
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.2364e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.28775126679697 (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 (2.3%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 207.99 us (91.6%)
LB move op cnt : 0
LB apply : 2.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (53.5%)
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 | 4.2605e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.813057678178 (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.75 us (2.6%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 201.37 us (90.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (62.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.1084e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.50081568112516 (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.39 us (2.3%)
patch tree reduce : 2.34 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 213.07 us (90.5%)
LB move op cnt : 0
LB apply : 5.03 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (52.6%)
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.3399e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.54424393904792 (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.26 us (2.3%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 207.23 us (91.4%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (61.9%)
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.3287e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.30191377224531 (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.74 us (2.2%)
patch tree reduce : 2.35 us (0.9%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 241.69 us (92.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (60.1%)
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 | 3.7097e+05 | 65536 | 2 | 1.767e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.81755546324936 (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 : 16.28 us (6.5%)
patch tree reduce : 2.70 us (1.1%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 217.44 us (87.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.5%)
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 | 4.3132e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.965646222111 (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.27 us (2.3%)
patch tree reduce : 2.50 us (1.1%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 204.92 us (91.0%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.0%)
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.2829e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.30774227293223 (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.06 us (1.9%)
patch tree reduce : 2.28 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 245.09 us (92.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (55.0%)
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.2295e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.1437490884185 (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.54 us (2.0%)
patch tree reduce : 2.47 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 256.57 us (92.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (60.2%)
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.1547e+05 | 65536 | 2 | 1.577e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.51537824778724 (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.37 us (2.3%)
patch tree reduce : 2.57 us (1.1%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 213.03 us (91.5%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (58.3%)
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 | 4.1300e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.97821149186142 (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.41 us (2.2%)
patch tree reduce : 2.40 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 224.95 us (92.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.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 | 5.0954e+05 | 65536 | 2 | 1.286e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.01243813355379 (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.26 us (2.3%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 212.03 us (91.7%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.9%)
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 | 5.8076e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.5308228116335 (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.41 us (2.1%)
patch tree reduce : 2.57 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 233.69 us (92.1%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (55.1%)
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 | 5.6569e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.2472927200655 (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.54 us (2.4%)
patch tree reduce : 2.50 us (1.1%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 209.98 us (91.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (59.1%)
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 | 5.1753e+05 | 65536 | 2 | 1.266e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.75575033086903 (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.33 us (2.3%)
patch tree reduce : 2.44 us (1.1%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 210.85 us (91.4%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (52.8%)
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 | 5.7633e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.56823630025465 (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.83 us (2.5%)
patch tree reduce : 2.71 us (1.2%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 208.43 us (91.1%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.5%)
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 | 5.7563e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.41865830163918 (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.26 us (2.5%)
patch tree reduce : 2.35 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 189.42 us (90.6%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (58.5%)
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 | 5.8694e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.88255278914073 (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.59 us (2.7%)
patch tree reduce : 2.38 us (1.2%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 186.48 us (90.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.8%)
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.4638e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.25999716136279 (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.31 us (2.2%)
patch tree reduce : 2.34 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 223.50 us (92.0%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (54.6%)
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 | 4.5163e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.40307225898009 (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.55 us (2.3%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 224.55 us (91.9%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (54.0%)
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 | 4.5133e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.34027043389545 (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.25 us (2.3%)
patch tree reduce : 2.47 us (1.1%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 212.75 us (91.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (59.8%)
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 | 4.5580e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.3137603134047 (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.30 us (1.9%)
patch tree reduce : 2.33 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 253.40 us (92.7%)
LB move op cnt : 0
LB apply : 3.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (60.7%)
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 | 4.5684e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.54317305538363 (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.58 us (2.3%)
patch tree reduce : 2.53 us (1.1%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 219.47 us (91.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.6%)
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 | 4.5572e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.29854550101139 (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.06 us (2.3%)
patch tree reduce : 2.37 us (1.1%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 198.25 us (91.2%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (59.5%)
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 | 5.7011e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.22556175806454 (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.26 us (2.4%)
patch tree reduce : 2.31 us (1.1%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 187.10 us (85.1%)
LB move op cnt : 0
LB apply : 16.14 us (7.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (59.1%)
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 | 5.8913e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.3713598194927 (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.31 us (2.6%)
patch tree reduce : 2.45 us (1.2%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.5%)
LB compute : 186.13 us (90.4%)
LB move op cnt : 0
LB apply : 3.20 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (54.6%)
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 | 5.8850e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.23562151307817 (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.05 us (2.2%)
patch tree reduce : 2.36 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 212.20 us (91.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (59.3%)
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 | 6.0140e+05 | 65536 | 2 | 1.090e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.04795996486968 (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.83 us (2.8%)
patch tree reduce : 2.51 us (1.2%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 186.70 us (90.1%)
LB move op cnt : 0
LB apply : 3.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.4%)
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 | 5.9448e+05 | 65536 | 2 | 1.102e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.54196267547263 (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.46 us (2.5%)
patch tree reduce : 2.66 us (1.2%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 193.99 us (90.6%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.1%)
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 | 5.9504e+05 | 65536 | 2 | 1.101e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.66591976872093 (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.03 us (1.9%)
patch tree reduce : 2.42 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 238.68 us (92.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.3%)
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 | 5.7380e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.03754739743947 (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.49 us (2.3%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 216.86 us (91.4%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (57.1%)
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 | 5.6358e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.81251949211797 (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.40 us (2.2%)
patch tree reduce : 2.51 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 209.45 us (86.2%)
LB move op cnt : 0
LB apply : 16.47 us (6.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (60.4%)
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 | 5.0676e+05 | 65536 | 2 | 1.293e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.43281732632552 (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.69 us (2.8%)
patch tree reduce : 2.40 us (1.2%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 186.43 us (90.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (57.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 | 4.4257e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.44414997427869 (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.81 us (2.7%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 197.92 us (90.7%)
LB move op cnt : 0
LB apply : 2.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (53.6%)
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 | 6.0624e+05 | 65536 | 2 | 1.081e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.11411093772261 (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.37 us (2.4%)
patch tree reduce : 2.79 us (1.2%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 205.98 us (91.1%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.7%)
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 | 5.8361e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.18248244477999 (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.38 us (2.6%)
patch tree reduce : 2.44 us (1.2%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.5%)
LB compute : 185.62 us (90.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (53.2%)
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 | 5.7501e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.30993582881636 (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 : 5.81 us (2.4%)
patch tree reduce : 2.48 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 220.11 us (91.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (82.2%)
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 | 5.9918e+05 | 65536 | 2 | 1.094e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.57979360630844 (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.58 us (2.6%)
patch tree reduce : 2.29 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 195.50 us (90.7%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.2%)
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 | 5.9389e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.427596735262 (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.43 us (2.2%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 228.60 us (92.0%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (59.7%)
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 | 5.9079e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.75498257127427 (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.48 us (2.2%)
patch tree reduce : 2.23 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 225.02 us (91.9%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (56.7%)
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 | 5.0564e+05 | 65536 | 2 | 1.296e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.19728564456783 (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.87 us (2.8%)
patch tree reduce : 2.45 us (1.2%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 188.84 us (90.2%)
LB move op cnt : 0
LB apply : 3.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.7%)
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 | 5.8929e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.43100001871213 (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 : 6.15 us (3.0%)
patch tree reduce : 2.31 us (1.1%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 186.70 us (89.9%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (58.3%)
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 | 5.9124e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.85583404165752 (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.27 us (2.5%)
patch tree reduce : 2.32 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 193.54 us (90.9%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.7%)
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 | 5.9926e+05 | 65536 | 2 | 1.094e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.60719100154475 (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 : 5.46 us (2.4%)
patch tree reduce : 2.44 us (1.1%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 208.21 us (91.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (61.2%)
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 | 6.0097e+05 | 65536 | 2 | 1.091e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.98056730966127 (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.26 us (2.5%)
patch tree reduce : 2.38 us (1.1%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 192.16 us (90.6%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.6%)
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 | 5.8658e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.84671938066369 (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.52 us (2.4%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 209.91 us (91.3%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (53.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 | 5.1418e+05 | 65536 | 2 | 1.275e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.0683786134968 (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.67 us (2.4%)
patch tree reduce : 2.33 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 212.79 us (91.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (56.8%)
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 | 5.6388e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.90205225856043 (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 : 6.26 us (2.8%)
patch tree reduce : 2.52 us (1.1%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 204.91 us (90.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (52.7%)
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 | 5.8569e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.6571018672448 (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.32 us (2.4%)
patch tree reduce : 2.35 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 204.13 us (91.1%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (55.9%)
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 | 5.8131e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.70239984128564 (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.21 us (2.5%)
patch tree reduce : 2.28 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 190.70 us (90.6%)
LB move op cnt : 0
LB apply : 3.34 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.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 | 5.9192e+05 | 65536 | 2 | 1.107e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.01673799177317 (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.57 us (2.2%)
patch tree reduce : 2.49 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 228.65 us (91.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (54.0%)
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 | 5.8195e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.84565612927462 (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.92 us (2.9%)
patch tree reduce : 2.25 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 185.84 us (90.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (53.6%)
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 | 6.1474e+05 | 65536 | 2 | 1.066e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 133.99433699569977 (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 : 5.75 us (2.5%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 208.96 us (91.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.4%)
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 | 5.9170e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.97397676207024 (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 : 5.36 us (2.4%)
patch tree reduce : 2.65 us (1.2%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 207.01 us (91.2%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (61.9%)
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 | 5.8233e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.93413443107647 (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.25 us (2.4%)
patch tree reduce : 2.49 us (1.2%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 195.97 us (90.7%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (54.9%)
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 | 5.3919e+05 | 65536 | 2 | 1.215e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.5319872182769 (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.31 us (2.2%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 217.27 us (91.7%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.9%)
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 | 5.7240e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.771784969923 (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.33 us (2.6%)
patch tree reduce : 2.30 us (1.1%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 186.74 us (90.4%)
LB move op cnt : 0
LB apply : 3.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (53.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 | 5.3389e+05 | 65536 | 2 | 1.228e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.3794098491345 (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.84 us (2.7%)
patch tree reduce : 2.29 us (1.1%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 192.02 us (90.2%)
LB move op cnt : 0
LB apply : 3.42 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (59.8%)
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 | 5.7924e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.26558174344822 (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.29 us (2.5%)
patch tree reduce : 2.34 us (1.1%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 192.67 us (90.6%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (53.7%)
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 | 5.8519e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.56543948499464 (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.48 us (2.7%)
patch tree reduce : 2.41 us (1.2%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 181.23 us (90.1%)
LB move op cnt : 0
LB apply : 3.46 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (52.8%)
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 | 5.6252e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.62435598666883 (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.59 us (2.5%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 201.38 us (91.0%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (57.7%)
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 | 5.7737e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.47385469172502 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 610.952614375 (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 1.95 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.68 us (58.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 : 861.00 ns (0.4%)
patch tree reduce : 1.44 us (0.6%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 233.10 us (96.0%)
LB move op cnt : 0
LB apply : 2.62 us (1.1%)
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.26 us (3.3%)
patch tree reduce : 2.28 us (0.8%)
gen split merge : 711.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 256.32 us (91.8%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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 | 5.7452e+05 | 65536 | 2 | 1.141e-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.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 222.14 us (91.7%)
LB move op cnt : 0
LB apply : 3.48 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 5.7353e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.81116876452536 (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.43 us (2.4%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 202.58 us (91.2%)
LB move op cnt : 0
LB apply : 3.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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.0584e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.31991506947536 (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.41 us (2.0%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 250.57 us (92.8%)
LB move op cnt : 0
LB apply : 3.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.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.9476e+05 | 65536 | 2 | 1.660e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.90796119700754 (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.02 us (2.0%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 226.93 us (92.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.9978e+05 | 65536 | 2 | 1.639e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.00031692481599 (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.45 us (2.2%)
patch tree reduce : 1.61 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 226.95 us (92.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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.0077e+05 | 65536 | 2 | 1.635e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.21566003642796 (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.10 us (2.1%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 221.24 us (92.1%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (52.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.6492e+05 | 65536 | 2 | 1.410e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.176451886935 (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.40 us (2.2%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 224.31 us (92.0%)
LB move op cnt : 0
LB apply : 2.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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 | 5.9775e+05 | 65536 | 2 | 1.096e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.08221230857734 (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 (2.4%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 203.28 us (91.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (51.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 | 5.9039e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.480812665036 (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.60 us (2.3%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 223.66 us (92.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.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 | 5.9267e+05 | 65536 | 2 | 1.106e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.97678394911856 (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.23 us (2.5%)
patch tree reduce : 1.62 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 192.03 us (91.0%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.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 | 5.9374e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.2107782153166 (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.61 us (2.1%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 248.84 us (92.8%)
LB move op cnt : 0
LB apply : 3.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.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 | 5.8573e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.4672204519988 (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 : 6.00 us (2.4%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 233.97 us (91.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.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 | 5.8468e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.23762907045923 (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.39 us (2.4%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 207.08 us (91.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (47.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 | 5.6545e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.05340761263042 (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 : 6.08 us (2.5%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 220.39 us (91.5%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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.2362e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.18868497366023 (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.39 us (2.3%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 219.17 us (91.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.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.9096e+05 | 65536 | 2 | 1.676e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.08017481672532 (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.48 us (2.4%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 206.20 us (91.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (56.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.0972e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.16355515499724 (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.69 us (2.0%)
patch tree reduce : 1.60 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 261.51 us (93.0%)
LB move op cnt : 0
LB apply : 3.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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.1750e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.85650298899827 (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.73 us (2.5%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 205.73 us (91.1%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (57.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.1749e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.85356969998666 (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.13 us (2.3%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 202.26 us (91.6%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (53.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.0753e+05 | 65536 | 2 | 1.608e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.6865066552244 (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.43 us (2.4%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 203.23 us (91.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (52.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.1757e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.87273731772511 (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 (2.2%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 222.44 us (92.2%)
LB move op cnt : 0
LB apply : 2.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (47.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.1622e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.57703380616572 (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.59 us (2.5%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 202.93 us (91.1%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (56.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.2330e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.11828696425034 (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.81 us (2.5%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 207.51 us (91.0%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (54.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.2343e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.14608748023757 (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.07 us (2.3%)
patch tree reduce : 1.65 us (0.8%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 197.08 us (91.2%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (54.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 | 5.1334e+05 | 65536 | 2 | 1.277e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.71335215630536 (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.59 us (2.2%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 239.88 us (92.5%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (50.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.5881e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.84653523689008 (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.19 us (2.1%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 232.18 us (92.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.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.3590e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.86096135622223 (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.63 us (2.0%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 258.28 us (92.9%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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.2418e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.31046702853466 (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.52 us (2.1%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 238.48 us (92.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.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.1944e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.27785006593376 (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.36 us (2.3%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 216.33 us (91.8%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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.0580e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.30992529634904 (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.51 us (2.4%)
patch tree reduce : 1.61 us (0.7%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 210.08 us (91.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 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.0170e+05 | 65536 | 2 | 1.631e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.4179141705651 (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.16 us (2.0%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 238.73 us (92.6%)
LB move op cnt : 0
LB apply : 3.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (52.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.9765e+05 | 65536 | 2 | 1.648e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.53602236484356 (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.72 us (2.4%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 214.70 us (91.8%)
LB move op cnt : 0
LB apply : 2.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.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.0275e+05 | 65536 | 2 | 1.627e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.64700437628346 (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.62 us (2.5%)
patch tree reduce : 1.69 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 204.07 us (91.4%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (53.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.1253e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.77432623637331 (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.58 us (2.4%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.51 us (0.7%)
LB compute : 211.85 us (91.6%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (52.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.1337e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.95867765904097 (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.65 us (2.3%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 225.10 us (92.1%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.1321e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.9228563763995 (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.35 us (2.3%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 211.44 us (91.7%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 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.0896e+05 | 65536 | 2 | 1.603e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.99785532775239 (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.33 us (2.1%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 237.88 us (92.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.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.0634e+05 | 65536 | 2 | 1.613e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.42884601848519 (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.14 us (1.9%)
patch tree reduce : 1.60 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 247.08 us (93.0%)
LB move op cnt : 0
LB apply : 2.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (57.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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.10562318801284 (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.59 us (2.3%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 227.90 us (91.9%)
LB move op cnt : 0
LB apply : 3.67 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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.2708e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.94172917723581 (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.42 us (2.3%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 216.52 us (91.8%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (55.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.1899e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.18079741817752 (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.11 us (2.2%)
patch tree reduce : 1.61 us (0.7%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 208.73 us (91.7%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (50.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.2617e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.7427155842676 (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.28 us (2.3%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 212.21 us (91.8%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (50.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.0926e+05 | 65536 | 2 | 1.601e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.0624217852272 (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.29 us (2.2%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 215.96 us (91.7%)
LB move op cnt : 0
LB apply : 3.45 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.1798e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.96087827030256 (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.49 us (2.3%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 213.97 us (91.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 | 4.1908e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.2004002166695 (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.18 us (2.2%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 214.50 us (91.9%)
LB move op cnt : 0
LB apply : 3.48 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (52.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.2370e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.20689757496143 (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.56 us (2.0%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 255.11 us (92.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.2839e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.22579885745155 (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.10 us (2.6%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 212.37 us (91.6%)
LB move op cnt : 0
LB apply : 2.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.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.2316e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.08828231265552 (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.32 us (2.0%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 249.06 us (92.8%)
LB move op cnt : 0
LB apply : 3.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (51.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.2544e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.58395022063061 (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.31 us (2.0%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 251.48 us (92.9%)
LB move op cnt : 0
LB apply : 3.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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.2668e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.85463806404147 (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.49 us (2.1%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 245.00 us (92.7%)
LB move op cnt : 0
LB apply : 3.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.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.1913e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.21114509906718 (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.88 us (2.5%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 212.43 us (91.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (54.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.1616e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.56564644376897 (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.44 us (2.0%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 245.99 us (92.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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.2139e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.70231908039959 (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 : 7.61 us (3.1%)
patch tree reduce : 2.21 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 221.91 us (90.8%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (53.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.1194e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.64652537210023 (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.54 us (2.1%)
patch tree reduce : 1.60 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 239.89 us (92.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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 | 4.1642e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.6220516282268 (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.65 us (2.4%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 216.42 us (91.8%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (54.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.2199e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.83380299793924 (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.47 us (2.2%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.6%)
LB compute : 226.29 us (92.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.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.1436e+05 | 65536 | 2 | 1.582e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.17260118647344 (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.36 us (2.4%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 207.23 us (91.6%)
LB move op cnt : 0
LB apply : 2.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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.1299e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.87425417105668 (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.62 us (2.3%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 223.25 us (91.9%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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.1840e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.05272400421076 (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.62 us (2.1%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 243.86 us (92.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.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.1337e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.95831961702572 (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 : 6.21 us (2.5%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 223.91 us (91.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (56.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.1270e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.81244251820848 (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.86 us (2.4%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.6%)
LB compute : 221.51 us (91.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (54.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.1547e+05 | 65536 | 2 | 1.577e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.41584282088554 (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.60 us (1.9%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 271.43 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.29 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.0003e+05 | 65536 | 2 | 1.638e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.05415576770022 (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.76 us (2.3%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 228.15 us (92.2%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (58.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.1887e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.15434059488759 (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.34 us (2.1%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 234.25 us (92.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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.1989e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.37632900910764 (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 : 16.98 us (6.5%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 231.56 us (88.1%)
LB move op cnt : 0
LB apply : 3.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.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.1687e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.71952204073183 (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.64 us (2.6%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 200.66 us (91.3%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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.0899e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.00540894693157 (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.54 us (2.1%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 239.39 us (92.5%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.0830e+05 | 65536 | 2 | 1.605e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.85439764400112 (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.25 us (2.3%)
patch tree reduce : 1.61 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 207.70 us (91.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.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.1189e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.63562314287574 (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.22 us (2.1%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 224.26 us (92.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.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.0204e+05 | 65536 | 2 | 1.630e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.4928756938713 (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.50 us (2.4%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 207.83 us (91.7%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (55.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.0247e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.58562040962374 (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.50 us (2.5%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 204.53 us (91.6%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.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.0536e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.21482157222073 (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.33 us (2.3%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 211.78 us (91.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (54.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.0494e+05 | 65536 | 2 | 1.618e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.12355963169385 (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.68 us (2.1%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 245.55 us (92.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (43.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.1873e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.12493081467767 (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.52 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 295.41 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.30 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.0991e+05 | 65536 | 2 | 1.599e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.2042609813946 (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.49 us (2.5%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.38 us (0.6%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 203.95 us (91.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (52.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.2239e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.92127384225385 (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.67 us (2.5%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 203.05 us (91.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (57.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.1802e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.97020432622936 (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.42 us (2.4%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 209.26 us (91.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.7544e+05 | 65536 | 2 | 1.746e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.70403771035967 (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.00 us (2.3%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 203.07 us (91.5%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.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.0323e+05 | 65536 | 2 | 1.625e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.75014327434828 (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.22 us (1.9%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 258.50 us (93.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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.0128e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.32613953022737 (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.49 us (2.4%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.39 us (0.6%)
LB compute : 211.03 us (91.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (50.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.0270e+05 | 65536 | 2 | 1.627e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.63477153351143 (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.23 us (2.3%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 210.92 us (91.7%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.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.0726e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.62814426128598 (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.53 us (2.4%)
patch tree reduce : 1.61 us (0.7%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 213.98 us (91.8%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (53.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.1544e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.40863306116259 (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.64 us (2.5%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 205.95 us (91.4%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.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.1638e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.6121163385868 (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.47 us (2.5%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 200.67 us (91.4%)
LB move op cnt : 0
LB apply : 2.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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.1374e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.0380846693373 (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.40 us (2.4%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 205.51 us (91.4%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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 | 4.1719e+05 | 65536 | 2 | 1.571e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.78840209889789 (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.45 us (2.4%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 208.24 us (91.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.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.1552e+05 | 65536 | 2 | 1.577e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.42505170976598 (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.43 us (2.0%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 12.18 us (4.5%)
LB compute : 241.95 us (88.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.1721e+05 | 65536 | 2 | 1.571e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.79317784883509 (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.15 us (2.3%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 209.73 us (91.9%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.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.0437e+05 | 65536 | 2 | 1.621e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.99900275383077 (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.58 us (2.5%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 206.82 us (91.4%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.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.1169e+05 | 65536 | 2 | 1.592e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.59319280994686 (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.47 us (2.1%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 235.77 us (92.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.0684e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.53630037384586 (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.50 us (2.3%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 215.65 us (91.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.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.0302e+05 | 65536 | 2 | 1.626e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.70558933935087 (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.48 us (2.4%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 210.99 us (91.7%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (55.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.9867e+05 | 65536 | 2 | 1.644e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.75968806628337 (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.65 us (2.5%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 202.77 us (91.2%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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.5963e+05 | 65536 | 2 | 1.426e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.02476110069989 (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.34 us (2.5%)
patch tree reduce : 1.65 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 192.16 us (90.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.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.9761e+05 | 65536 | 2 | 1.648e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.52779850890397 (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.55 us (2.5%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 207.09 us (91.6%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (54.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.9759e+05 | 65536 | 2 | 1.648e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.52365619699928 (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.08 us (2.0%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 230.42 us (92.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.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.0320e+05 | 65536 | 2 | 1.625e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.74419556391265 (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.35 us (2.3%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 215.57 us (91.9%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (53.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.2972e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.51609374678071 (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.47 us (2.4%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 211.72 us (91.7%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.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.7954e+05 | 65536 | 2 | 1.367e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.3572699137895 (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.16 us (2.1%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 226.71 us (92.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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 | 5.9615e+05 | 65536 | 2 | 1.099e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.73382555498063 (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.54 us (2.4%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.39 us (0.6%)
LB compute : 213.96 us (91.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (56.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 | 5.5926e+05 | 65536 | 2 | 1.172e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.70560459987917 (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.16 us (2.0%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 240.09 us (92.5%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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 | 5.7428e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.97560245478081 (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.35 us (2.3%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 210.85 us (91.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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 | 5.8064e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.35818690893962 (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.87 us (2.8%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 192.48 us (90.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.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 | 5.8506e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.32123177958654 (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.71 us (2.8%)
patch tree reduce : 1.79 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 185.94 us (90.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.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 | 5.8427e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.14829008683395 (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.12 us (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 188.57 us (90.8%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.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 | 5.6936e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.9041352051764 (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.42 us (2.1%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 237.90 us (92.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.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 | 5.7314e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.72679829212456 (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.51 us (2.4%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 213.65 us (91.7%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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.0247e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.58641755588563 (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.26 us (1.9%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 260.08 us (93.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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 | 5.5789e+05 | 65536 | 2 | 1.175e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.40738814504589 (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.26 us (2.1%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 226.50 us (92.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (51.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.9289e+05 | 65536 | 2 | 1.330e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.26342079432331 (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.18 us (1.9%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 244.84 us (91.8%)
LB move op cnt : 0
LB apply : 3.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (58.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 | 5.5172e+05 | 65536 | 2 | 1.188e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.06655452532877 (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.19 us (2.3%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 208.92 us (91.6%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.3%)
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 | 5.6501e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.95816601503758 (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.24 us (2.2%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 221.12 us (92.1%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (59.3%)
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 | 5.6277e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.46971043445961 (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.22 us (2.2%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 218.15 us (92.1%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (54.5%)
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 | 5.6544e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.05207942280845 (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.89 us (2.2%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 249.82 us (92.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.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.3190e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.99105129306712 (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.58 us (2.1%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 249.55 us (92.8%)
LB move op cnt : 0
LB apply : 3.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (56.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 | 4.3749e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.20653865083825 (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.48 us (2.2%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 233.07 us (92.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (59.8%)
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.3291e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.20957885488131 (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.23 us (2.1%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 12.58 us (5.2%)
LB compute : 213.15 us (87.4%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.3%)
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.4533e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.91187904889449 (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.35 us (2.3%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 208.82 us (91.5%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (54.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.4084e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.93567986777869 (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 (2.5%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 203.98 us (91.0%)
LB move op cnt : 0
LB apply : 3.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (56.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.2506e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.50154153935438 (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.57 us (2.5%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 199.22 us (91.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (55.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.3757e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.22423708903038 (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.27 us (2.3%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 206.96 us (91.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (48.1%)
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 | 4.1277e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.82715507132635 (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.29 us (2.3%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 209.19 us (91.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (57.7%)
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 | 4.3143e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.88910013705153 (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 : 4.94 us (2.3%)
patch tree reduce : 1.66 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 197.81 us (91.5%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (57.7%)
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 | 4.4381e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.58222885976355 (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.24 us (2.4%)
patch tree reduce : 1.67 us (0.8%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 202.08 us (91.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (56.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.3970e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.68692660454408 (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.35 us (2.2%)
patch tree reduce : 1.55 us (0.7%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 218.86 us (91.9%)
LB move op cnt : 0
LB apply : 3.55 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.0%)
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.3651e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.99378358939948 (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 : 4.95 us (2.2%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 206.15 us (91.7%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (54.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 | 4.3843e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.41141340715716 (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.85 us (2.3%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 229.10 us (91.9%)
LB move op cnt : 0
LB apply : 3.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (58.9%)
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.9797e+05 | 65536 | 2 | 1.647e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.6066499140481 (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 : 5.35 us (2.3%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 215.13 us (91.8%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (61.6%)
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.5345e+05 | 65536 | 2 | 1.854e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.91787771321022 (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.29 us (1.9%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 261.49 us (93.2%)
LB move op cnt : 0
LB apply : 3.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.4%)
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.7731e+05 | 65536 | 2 | 1.737e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.11039568286698 (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.36 us (2.0%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 246.28 us (92.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (61.4%)
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.1583e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.49386814930374 (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.16 us (2.1%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 222.40 us (92.3%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (50.6%)
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.1825e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.0206802312527 (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.68 us (2.3%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 223.15 us (92.1%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (52.7%)
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.2740e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.01056150536239 (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.10 us (2.1%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 221.64 us (92.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.9%)
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.2395e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.2591375470576 (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.64 us (2.3%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 226.13 us (92.2%)
LB move op cnt : 0
LB apply : 2.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (53.7%)
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.2705e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.93375853391308 (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.86 us (2.2%)
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.28 us (0.5%)
LB compute : 248.39 us (92.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (64.3%)
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.1835e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.04056873788296 (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.70 us (2.3%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 225.58 us (91.8%)
LB move op cnt : 0
LB apply : 3.49 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.3%)
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.2645e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.80408527403235 (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.76 us (2.4%)
patch tree reduce : 2.63 us (1.1%)
gen split merge : 1.49 us (0.6%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 219.86 us (91.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (53.4%)
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.2687e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.8963533594611 (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.79 us (2.2%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 241.92 us (92.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.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.2601e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.7090303463221 (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.54 us (2.1%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 243.43 us (92.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.7%)
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.2401e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.272970188824 (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.60 us (2.3%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 220.19 us (92.0%)
LB move op cnt : 0
LB apply : 2.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.4%)
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.2305e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.06365201450829 (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.45 us (2.1%)
patch tree reduce : 1.60 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 236.51 us (92.6%)
LB move op cnt : 0
LB apply : 3.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.8%)
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.2134e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.69270555273314 (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.64 us (2.3%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 224.89 us (92.1%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (54.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 | 4.1884e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.14856908282121 (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.47 us (2.0%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 257.65 us (92.9%)
LB move op cnt : 0
LB apply : 3.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (51.7%)
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.1785e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.93248659605705 (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.70 us (2.3%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 230.05 us (92.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.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 | 4.1898e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.17765545705166 (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.35 us (2.4%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 200.49 us (91.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (60.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 | 3.9882e+05 | 65536 | 2 | 1.643e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.79168357025591 (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.59 us (2.5%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 199.68 us (90.9%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (58.8%)
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.9933e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.90315333984884 (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.51 us (2.2%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 235.85 us (92.6%)
LB move op cnt : 0
LB apply : 2.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.4%)
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.0008e+05 | 65536 | 2 | 1.638e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.06508216201233 (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.68 us (2.5%)
patch tree reduce : 1.56 us (0.7%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 204.14 us (91.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.4%)
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.1606e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.54253771751277 (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.18 us (2.0%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 241.63 us (92.8%)
LB move op cnt : 0
LB apply : 3.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.9%)
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.0528e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.1969877778593 (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 : 9.08 us (4.0%)
patch tree reduce : 2.46 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 201.47 us (89.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (57.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 | 3.9726e+05 | 65536 | 2 | 1.650e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.45258009002647 (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.45 us (2.1%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 236.08 us (92.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (56.8%)
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 | 4.0049e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.15508680967648 (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.74 us (2.3%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 233.76 us (92.3%)
LB move op cnt : 0
LB apply : 3.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (59.5%)
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.1134e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.51671674563472 (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.50 us (2.3%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 217.67 us (91.8%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.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.0817e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.82575981732826 (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.51 us (2.4%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 209.34 us (91.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.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.0544e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.2324202202866 (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.24 us (2.2%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 217.96 us (91.9%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (58.9%)
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.1086e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.41240037641995 (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.39 us (2.3%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 218.10 us (91.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (58.7%)
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.9747e+05 | 65536 | 2 | 1.649e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.49673689949272 (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.45 us (1.9%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 264.10 us (93.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (65.7%)
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 | 3.9629e+05 | 65536 | 2 | 1.654e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.24172571317482 (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.44 us (2.3%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 212.74 us (91.8%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.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 | 3.9813e+05 | 65536 | 2 | 1.646e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.64059317749833 (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.41 us (2.3%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 212.91 us (91.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (59.9%)
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.0067e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.19378179936909 (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.80 us (2.5%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 216.52 us (91.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.8%)
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.2298e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.0491857632754 (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.72 us (2.5%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 212.42 us (91.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.0%)
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.2533e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.56158732183204 (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.18 us (2.3%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 205.84 us (91.8%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.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.1584e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.4945577614132 (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.08 us (2.2%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 211.36 us (91.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (51.9%)
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.1359e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.00586824112415 (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.75 us (2.3%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 235.66 us (92.2%)
LB move op cnt : 0
LB apply : 3.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.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.1579e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.4836612823381 (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.32 us (2.0%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 248.69 us (92.9%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.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.1361e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.01037398327118 (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 : 6.06 us (2.6%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 212.23 us (91.4%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.6%)
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.1162e+05 | 65536 | 2 | 1.592e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.57603737292081 (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.99 us (2.5%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 221.73 us (91.8%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (51.8%)
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.0942e+05 | 65536 | 2 | 1.601e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.09730855153423 (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.62 us (2.5%)
patch tree reduce : 1.71 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 208.11 us (91.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.0%)
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.1239e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.74406352239009 (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 (2.5%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 211.32 us (91.6%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (53.0%)
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.1498e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.3074104477616 (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.36 us (2.3%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 212.37 us (91.8%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (53.9%)
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.1351e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.98813424652047 (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.31 us (2.0%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 247.19 us (92.6%)
LB move op cnt : 0
LB apply : 3.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (55.4%)
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.1289e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.85423505363525 (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.41 us (2.4%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 207.14 us (91.6%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.5%)
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.1277e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.82728406585272 (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.80 us (2.5%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 211.78 us (91.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.3%)
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.0971e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.16149436193912 (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.64 us (2.5%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 207.96 us (91.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.7%)
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.2033e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.47295784389415 (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.33 us (2.3%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 208.65 us (91.4%)
LB move op cnt : 0
LB apply : 3.59 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (56.5%)
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 | 4.1364e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.01692322377887 (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.56 us (2.4%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 211.70 us (91.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (57.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 | 4.2221e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.88078937278911 (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.68 us (2.3%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 224.52 us (91.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.6%)
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.1944e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.27782027259714 (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.50 us (2.4%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 214.70 us (91.9%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (53.5%)
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.2138e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.70042876006497 (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.33 us (2.3%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 209.18 us (91.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (54.4%)
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 | 4.2342e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.1453718724881 (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.55 us (2.4%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 214.19 us (91.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.5%)
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.1289e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.85238732352019 (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.47 us (2.3%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 220.77 us (91.8%)
LB move op cnt : 0
LB apply : 3.57 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.2%)
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.0849e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.89523717928734 (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.72 us (2.2%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 237.03 us (92.2%)
LB move op cnt : 0
LB apply : 3.53 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (59.5%)
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.1441e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.18438662271058 (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.23 us (2.1%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.6%)
LB compute : 225.28 us (92.2%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (53.8%)
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.1423e+05 | 65536 | 2 | 1.582e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.14440824328672 (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.44 us (2.3%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 217.27 us (92.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (51.8%)
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 | 4.1271e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.81481518489065 (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.28 us (2.1%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 235.27 us (92.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (55.4%)
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.1388e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.06865922978275 (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 : 15.83 us (6.5%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 213.72 us (87.9%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.9%)
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.1168e+05 | 65536 | 2 | 1.592e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.59044745369269 (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.42 us (2.3%)
patch tree reduce : 1.60 us (0.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 213.27 us (91.6%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.8%)
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.1244e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.75607216521364 (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.33 us (2.3%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 208.63 us (91.5%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (54.8%)
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.1114e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.4731342265931 (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.27 us (2.3%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 211.81 us (91.7%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.8%)
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.1533e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.38363735887815 (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.60 us (2.4%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 209.85 us (91.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.5%)
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.1913e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.21225286100044 (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.38 us (2.1%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 231.52 us (92.2%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (61.9%)
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.1705e+05 | 65536 | 2 | 1.571e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.75868387389691 (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.34 us (2.3%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 208.18 us (91.4%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.4%)
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.0906e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.01956932782255 (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.52 us (2.1%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 238.79 us (92.5%)
LB move op cnt : 0
LB apply : 3.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (50.2%)
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 | 4.1194e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.6470268825528 (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.18 us (2.2%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 12.29 us (5.1%)
LB compute : 210.24 us (87.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.9%)
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 | 3.0346e+05 | 65536 | 2 | 2.160e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.03885750795511 (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.63 us (2.1%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 254.31 us (92.8%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.3%)
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 | 3.9399e+05 | 65536 | 2 | 1.663e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.74048398423858 (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.24 us (2.1%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 234.86 us (92.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (56.6%)
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.9156e+05 | 65536 | 2 | 1.674e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.21102261798983 (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.16 us (2.1%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 224.46 us (92.3%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.2%)
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.9557e+05 | 65536 | 2 | 1.657e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.08406590143188 (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.72 us (2.2%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 237.48 us (92.6%)
LB move op cnt : 0
LB apply : 2.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.7%)
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.0920e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.05065307001658 (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.33 us (1.9%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 265.43 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.20 us (60.3%)
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.0117e+05 | 65536 | 2 | 1.634e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.30208046255257 (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.83 us (2.5%)
patch tree reduce : 1.61 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 216.07 us (92.0%)
LB move op cnt : 0
LB apply : 2.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (54.9%)
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.0058e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.17523354442606 (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.55 us (2.4%)
patch tree reduce : 1.59 us (0.7%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 209.36 us (91.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (52.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.0473e+05 | 65536 | 2 | 1.619e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.07695262631432 (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.66 us (2.5%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 211.21 us (91.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (62.1%)
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.1698e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.74338748335279 (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.21 us (2.3%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 207.23 us (91.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.9%)
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.1777e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.91539055155405 (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.51 us (2.5%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 205.24 us (91.5%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (58.5%)
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.1776e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.91348037672732 (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.54 us (2.3%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 217.60 us (91.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (60.5%)
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.0249e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.59088872983287 (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.43 us (2.2%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 224.23 us (92.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.4%)
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.0007e+05 | 65536 | 2 | 1.638e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.0630013663819 (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.26 us (2.1%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 233.58 us (92.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (59.1%)
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 | 3.7980e+05 | 65536 | 2 | 1.726e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.65275371027009 (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.54 us (2.5%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 203.55 us (91.4%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (60.8%)
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.3253e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.12768560154565 (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.34 us (2.4%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 200.67 us (91.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (52.5%)
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.3039e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.66096496790027 (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.08 us (2.2%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 215.43 us (91.9%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (61.6%)
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.3387e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.41882494719528 (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.63 us (2.5%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 209.24 us (91.6%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (60.6%)
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.3079e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.7479096082854 (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.28 us (2.4%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 201.27 us (91.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (57.7%)
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.2867e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.28832354792247 (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.40 us (2.1%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 239.08 us (92.8%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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 | 4.3516e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.69892219366766 (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.84 us (2.4%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 222.13 us (92.0%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (52.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 | 5.6457e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.86138567816757 (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.54 us (2.0%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 259.54 us (93.0%)
LB move op cnt : 0
LB apply : 3.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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 | 5.7736e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.64618352791649 (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.62 us (2.7%)
patch tree reduce : 1.65 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 188.56 us (90.5%)
LB move op cnt : 0
LB apply : 3.40 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.7%)
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 | 5.7903e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.00781379415957 (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.38 us (2.4%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 12.19 us (5.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 194.04 us (86.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (60.0%)
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 | 5.9819e+05 | 65536 | 2 | 1.096e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.17904437185592 (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.33 us (2.3%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 209.17 us (91.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.0%)
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 | 6.0523e+05 | 65536 | 2 | 1.083e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.71048912123794 (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.55 us (2.7%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 185.17 us (90.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (53.7%)
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 | 6.0542e+05 | 65536 | 2 | 1.082e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.75245706600217 (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.61 us (2.5%)
patch tree reduce : 1.68 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 203.56 us (91.5%)
LB move op cnt : 0
LB apply : 2.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (57.9%)
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 | 5.9692e+05 | 65536 | 2 | 1.098e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.90246551346746 (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.21 us (2.5%)
patch tree reduce : 1.80 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 188.68 us (91.0%)
LB move op cnt : 0
LB apply : 2.88 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (61.1%)
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 | 4.8424e+05 | 65536 | 2 | 1.353e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.37958394129994 (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.55 us (2.6%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 196.32 us (91.0%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (56.5%)
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 | 5.9143e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.70762293879272 (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.63 us (2.5%)
patch tree reduce : 1.51 us (0.7%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 207.47 us (91.6%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (52.4%)
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.9578e+05 | 65536 | 2 | 1.656e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.13003935436552 (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.69 us (2.5%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 211.02 us (91.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (60.5%)
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.9374e+05 | 65536 | 2 | 1.664e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.68570535280418 (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.32 us (2.1%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 230.38 us (92.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.9%)
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.9592e+05 | 65536 | 2 | 1.655e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.15980019730732 (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.46 us (2.4%)
patch tree reduce : 1.61 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 213.01 us (91.9%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.6%)
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.9590e+05 | 65536 | 2 | 1.655e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.1557086577533 (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.36 us (2.1%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 233.41 us (92.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.2%)
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.9090e+05 | 65536 | 2 | 1.677e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.06703237696195 (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.65 us (2.4%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 217.28 us (91.8%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (53.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.9359e+05 | 65536 | 2 | 1.665e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.65297926832511 (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.64 us (2.3%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 222.05 us (91.9%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.4%)
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 | 3.9308e+05 | 65536 | 2 | 1.667e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.54276442289765 (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.62 us (2.3%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 223.07 us (91.9%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (60.0%)
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 | 3.9315e+05 | 65536 | 2 | 1.667e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.5578178197439 (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.45 us (2.2%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 225.06 us (92.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (60.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 | 3.9360e+05 | 65536 | 2 | 1.665e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.65472056536692 (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.75 us (2.2%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 243.07 us (92.7%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (59.5%)
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 | 3.8510e+05 | 65536 | 2 | 1.702e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.8064103339162 (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.52 us (2.2%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 231.79 us (92.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (58.6%)
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.8962e+05 | 65536 | 2 | 1.682e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.78930523424113 (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.58 us (2.5%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 206.20 us (91.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (53.7%)
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.9376e+05 | 65536 | 2 | 1.664e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.69017609562889 (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.27 us (2.2%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 220.22 us (92.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (59.3%)
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 | 3.9358e+05 | 65536 | 2 | 1.665e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.6515729099602 (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.74 us (2.3%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 232.22 us (92.3%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (65.1%)
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 | 3.9829e+05 | 65536 | 2 | 1.645e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.67617915937858 (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.21 us (2.3%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 209.11 us (91.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.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.9725e+05 | 65536 | 2 | 1.650e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.4503817453136 (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.43 us (2.4%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 210.77 us (91.5%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (58.5%)
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 | 3.9594e+05 | 65536 | 2 | 1.655e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.16493534413584 (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.62 us (2.4%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 212.85 us (91.7%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (52.7%)
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 | 3.9935e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.90712606949322 (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.12 us (2.3%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 207.63 us (91.6%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (59.4%)
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.0140e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.35286872691621 (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.43 us (2.1%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 237.09 us (92.5%)
LB move op cnt : 0
LB apply : 2.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.4%)
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 | 3.8033e+05 | 65536 | 2 | 1.723e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.76846544619852 (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.64 us (2.5%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 210.42 us (91.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (58.8%)
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.8367e+05 | 65536 | 2 | 1.708e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.49373527852244 (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 (2.4%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 205.78 us (91.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (59.9%)
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.9337e+05 | 65536 | 2 | 1.666e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.60548540288983 (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.86 us (2.5%)
patch tree reduce : 1.51 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 217.20 us (91.8%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (52.8%)
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.9478e+05 | 65536 | 2 | 1.660e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.9114905119033 (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.59 us (2.3%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 225.17 us (91.9%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (60.3%)
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 | 4.0340e+05 | 65536 | 2 | 1.625e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.78780365126165 (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.39 us (2.4%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 207.72 us (91.6%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (51.9%)
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 | 3.9657e+05 | 65536 | 2 | 1.653e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.30228579857393 (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.35 us (2.2%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 226.33 us (91.3%)
LB move op cnt : 0
LB apply : 5.46 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (61.0%)
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.8133e+05 | 65536 | 2 | 1.719e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.9852319011482 (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 : 16.73 us (6.9%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 211.89 us (87.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (58.6%)
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.9256e+05 | 65536 | 2 | 1.669e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.42946097897851 (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.60 us (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 202.69 us (91.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.0%)
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 | 5.6409e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.75846291440415 (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.46 us (2.1%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 241.87 us (92.7%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.3%)
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 | 4.7529e+05 | 65536 | 2 | 1.379e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.43217561775128 (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.33 us (2.5%)
patch tree reduce : 1.82 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 192.02 us (90.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (60.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.8496e+05 | 65536 | 2 | 1.351e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.53708276053653 (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.80 us (2.7%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 195.60 us (90.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.6%)
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 | 5.5130e+05 | 65536 | 2 | 1.189e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.97466455211142 (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.37 us (2.5%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 195.38 us (91.2%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (46.9%)
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 | 5.5469e+05 | 65536 | 2 | 1.181e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.71104561421718 (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.91 us (2.9%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 932.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 184.60 us (90.1%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.3%)
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 | 5.5741e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.3047461529184 (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.19 us (2.2%)
patch tree reduce : 1.59 us (0.7%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 218.44 us (92.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.9%)
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 | 5.4657e+05 | 65536 | 2 | 1.199e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.94507127937149 (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 : 5.19 us (2.4%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 194.05 us (91.0%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (54.4%)
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 | 5.0480e+05 | 65536 | 2 | 1.298e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.85585930275913 (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.64 us (2.4%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 214.80 us (91.6%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.6%)
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 | 5.7994e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.20760029467006 (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.26 us (2.5%)
patch tree reduce : 1.68 us (0.8%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 191.39 us (91.2%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (60.8%)
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 | 5.2090e+05 | 65536 | 2 | 1.258e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.35750431486045 (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.44 us (2.2%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 233.31 us (92.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (55.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 | 5.7490e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.11015844145024 (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.42 us (2.6%)
patch tree reduce : 1.84 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 192.70 us (90.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (56.1%)
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 | 5.8383e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.05446166229386 (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.33 us (2.3%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 215.11 us (91.9%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.1%)
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 | 5.6785e+05 | 65536 | 2 | 1.154e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.5759697649756 (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.56 us (2.6%)
patch tree reduce : 1.65 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 194.30 us (91.1%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.8%)
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 | 5.7348e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.80066866439961 (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.46 us (2.3%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 220.60 us (92.1%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (57.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 | 5.6551e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.06601997533613 (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.63 us (2.2%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 236.13 us (92.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (61.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 | 5.7044e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.13843080869849 (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.58 us (2.5%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 204.29 us (91.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (56.1%)
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 | 5.8918e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.21789520875663 (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.52 us (2.1%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 244.83 us (92.6%)
LB move op cnt : 0
LB apply : 3.66 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.7%)
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 | 4.2917e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.3959257659821 (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.59 us (2.3%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 220.56 us (91.9%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.4%)
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.2849e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.24825773134971 (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.15 us (2.3%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 202.64 us (91.4%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.7%)
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.4024e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.80538853344818 (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.86 us (2.3%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.64 us (0.6%)
LB compute : 233.37 us (91.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (55.1%)
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.3764e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.23841867162744 (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.66 us (2.6%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 202.13 us (91.3%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.5%)
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.3940e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.62324553255054 (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.71 us (2.4%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 222.39 us (92.0%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.3%)
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.3327e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.2886106998593 (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.34 us (2.4%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 208.03 us (91.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.2%)
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.2681e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.88236952716866 (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.36 us (2.3%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 209.87 us (91.8%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.1%)
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.2569e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.63870403048696 (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.79 us (2.5%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 210.97 us (91.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.9%)
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 | 4.3036e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.65545229264448 (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.47 us (2.3%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 219.59 us (91.7%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.79 us (91.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.4274e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.34838358137253 (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.56 us (2.5%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 203.12 us (91.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.4%)
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.3215e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.04372445722517 (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.51 us (2.3%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 221.14 us (91.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.0%)
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.3313e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.25895933645936 (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.37 us (2.4%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 205.54 us (91.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (58.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.0521e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.18206231523608 (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.52 us (2.4%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 208.59 us (91.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (52.0%)
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 | 4.1720e+05 | 65536 | 2 | 1.571e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.79020245588231 (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.59 us (2.5%)
patch tree reduce : 1.53 us (0.7%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 208.07 us (91.6%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.4%)
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 | 4.1768e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.89663483520773 (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.44 us (2.3%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 211.52 us (91.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.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 | 4.4325e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.46105446758737 (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 : 6.05 us (2.5%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 217.46 us (91.5%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (59.7%)
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 | 4.4243e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.2821013511726 (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.63 us (2.1%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 242.67 us (92.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.2%)
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 | 4.4396e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.61487405214261 (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.49 us (2.5%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 203.25 us (91.2%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.5%)
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.3582e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.84426372527635 (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 (2.5%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 198.48 us (91.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (57.9%)
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 | 4.2691e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.90365073132924 (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.63 us (2.4%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 216.17 us (91.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (52.4%)
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.2413e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.29848382793097 (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 : 6.49 us (2.8%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 210.71 us (91.0%)
LB move op cnt : 0
LB apply : 3.47 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (62.6%)
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.2590e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.68481688169946 (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.61 us (2.6%)
patch tree reduce : 1.71 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 200.33 us (91.2%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (53.8%)
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.2951e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.46936473063008 (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.59 us (2.1%)
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.15 us (0.4%)
LB compute : 249.32 us (92.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.6%)
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.1639e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.61543713825415 (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.57 us (2.3%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 219.17 us (91.8%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (58.5%)
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 | 3.9886e+05 | 65536 | 2 | 1.643e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.80067249287988 (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.66 us (2.6%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 200.14 us (91.0%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (59.2%)
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.1683e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.71103491612493 (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.38 us (2.4%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 200.57 us (91.2%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (57.5%)
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 | 3.9965e+05 | 65536 | 2 | 1.640e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.97278846602607 (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.71 us (2.2%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 234.02 us (92.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (60.4%)
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.2497e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.48208979129691 (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.55 us (2.5%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 203.99 us (91.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (60.5%)
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.3119e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.8368711528526 (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.83 us (2.7%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 199.60 us (91.2%)
LB move op cnt : 0
LB apply : 2.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (50.3%)
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 | 4.2724e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.97670032790423 (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.65 us (2.4%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 212.38 us (91.6%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (49.5%)
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.2637e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.7860846194945 (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.71 us (2.3%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 231.17 us (92.0%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.8%)
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.1887e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.15483065901337 (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.27 us (2.1%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 226.50 us (92.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (59.1%)
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.3068e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.7241865066315 (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.60 us (2.6%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 199.44 us (91.3%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (57.2%)
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.2074e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.56130186656064 (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.73 us (2.4%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 214.70 us (91.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (39.4%)
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 | 4.2172e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.77495208014979 (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.17 us (2.2%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 214.69 us (91.8%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (59.0%)
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 | 4.3374e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.39073157524871 (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.43 us (2.4%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 211.16 us (91.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (61.9%)
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 | 4.2837e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.22183264238645 (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 : 5.19 us (2.3%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 204.11 us (91.4%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (57.0%)
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 | 4.3300e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.23042491490331 (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.88 us (2.5%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 213.67 us (91.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (61.2%)
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 | 4.2232e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.90651956160971 (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.46 us (2.4%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 210.19 us (91.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (51.4%)
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 | 4.3098e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.78950650407543 (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.31 us (2.4%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 197.88 us (91.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.0%)
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 | 4.3661e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.01490159843159 (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.28 us (2.3%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 215.19 us (91.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.9%)
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 | 4.3418e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.4864586720106 (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.45 us (2.4%)
patch tree reduce : 1.71 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 203.14 us (91.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.8%)
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 | 4.3391e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.42753453617955 (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.21 us (2.2%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 212.85 us (91.8%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (54.7%)
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 | 4.3302e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.23460270873184 (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.06 us (2.2%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 214.85 us (92.1%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (58.1%)
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 | 4.5073e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.0890074484609 (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.16 us (2.0%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 240.63 us (92.6%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (55.6%)
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.3777e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.26841540755979 (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 : 5.50 us (2.5%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 200.40 us (91.2%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.1%)
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.4532e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.91164806581034 (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.29 us (2.2%)
patch tree reduce : 1.59 us (0.7%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 218.68 us (92.1%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (55.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.3716e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.134031381288 (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.48 us (2.4%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 207.82 us (91.5%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.4%)
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.5416e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.83408978605446 (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.51 us (2.4%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 213.00 us (91.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.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 | 4.2891e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.33949049298921 (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.48 us (2.3%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 214.58 us (91.9%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (51.2%)
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 | 4.2053e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.5160886122486 (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 : 5.30 us (2.2%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 217.41 us (91.9%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (53.7%)
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 | 4.2058e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.52733445834744 (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.62 us (2.3%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 229.70 us (92.2%)
LB move op cnt : 0
LB apply : 3.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (54.7%)
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 | 4.1975e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.34596102400515 (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.69 us (2.4%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 215.68 us (91.7%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (53.1%)
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 | 4.2594e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.69269018492977 (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 : 5.66 us (2.5%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 206.47 us (91.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.0%)
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.2469e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.42070739845829 (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.32 us (2.3%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 212.80 us (91.9%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.8%)
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.1102e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.44744037830114 (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.34 us (2.3%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 207.89 us (91.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (59.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.0988e+05 | 65536 | 2 | 1.599e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.19755574637918 (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.96 us (2.2%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 255.16 us (92.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.3%)
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 | 4.0795e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.77736248447987 (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.57 us (2.3%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 226.61 us (92.2%)
LB move op cnt : 0
LB apply : 3.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.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 | 4.5797e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.66427081420579 (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.75 us (2.4%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 221.09 us (91.9%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.1%)
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 | 5.4633e+05 | 65536 | 2 | 1.200e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.89333331818811 (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.22 us (2.5%)
patch tree reduce : 1.71 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 189.26 us (90.9%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (59.8%)
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 | 5.9021e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.4413669770225 (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 : 5.64 us (2.6%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 200.14 us (91.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (54.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 | 5.8833e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.03290953856353 (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.33 us (2.6%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 187.20 us (90.7%)
LB move op cnt : 0
LB apply : 3.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (52.5%)
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 | 4.3163e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.93258140633311 (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.29 us (2.3%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 206.12 us (91.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (62.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 | 4.3257e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.1359179314806 (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 : 5.92 us (2.2%)
patch tree reduce : 2.25 us (0.8%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 245.53 us (91.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.8%)
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 | 5.6392e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.72116074472328 (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.48 us (2.2%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 223.93 us (91.7%)
LB move op cnt : 0
LB apply : 3.69 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (57.6%)
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 | 5.5857e+05 | 65536 | 2 | 1.173e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.5571390402085 (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 (2.9%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 195.34 us (90.7%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (59.8%)
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 | 5.6250e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.41225164390443 (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.45 us (2.6%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 192.82 us (91.0%)
LB move op cnt : 0
LB apply : 2.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (50.8%)
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 | 5.7218e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.51900482564459 (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.27 us (2.2%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 219.43 us (91.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.4%)
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 | 5.7035e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.11999484852579 (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.44 us (2.6%)
patch tree reduce : 1.62 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 191.32 us (91.0%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (54.3%)
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 | 5.6605e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.18418545956219 (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.65 us (2.7%)
patch tree reduce : 1.68 us (0.8%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 188.27 us (90.7%)
LB move op cnt : 0
LB apply : 3.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (51.1%)
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 | 5.8957e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.3023279060394 (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.38 us (2.6%)
patch tree reduce : 1.71 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 189.25 us (91.0%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (61.6%)
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 | 5.9347e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.15116753914216 (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.47 us (2.6%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 192.10 us (90.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (55.6%)
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 | 5.2219e+05 | 65536 | 2 | 1.255e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.639384492039 (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.58 us (2.3%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 218.58 us (91.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.9%)
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 | 5.7547e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.23358380041734 (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.52 us (2.4%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 206.18 us (91.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.3%)
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 | 5.6600e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.1724010351528 (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.67 us (2.7%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 191.31 us (90.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.5%)
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 | 5.7871e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.93819979658568 (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.62 us (2.5%)
patch tree reduce : 1.71 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 201.23 us (91.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.9%)
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 | 5.7424e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.96733409387552 (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.54 us (2.6%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 195.72 us (90.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (40.9%)
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 | 4.9295e+05 | 65536 | 2 | 1.329e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.27575985662511 (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.55 us (2.7%)
patch tree reduce : 1.67 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 187.91 us (90.8%)
LB move op cnt : 0
LB apply : 2.91 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (53.5%)
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 | 5.6889e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.80294435719478 (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.16 us (2.3%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 207.13 us (91.6%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (60.7%)
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 | 5.7989e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.19665116146278 (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.65 us (2.4%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 211.59 us (91.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (63.6%)
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 | 5.6675e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.33638735265619 (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.26 us (2.4%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 200.56 us (91.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (58.0%)
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 | 5.6566e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.09841371702761 (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.20 us (2.3%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 206.09 us (91.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (61.5%)
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 | 5.6646e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.27229761742434 (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.04 us (2.0%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 232.39 us (92.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.7%)
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 | 5.7120e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.30481752948347 (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.92 us (2.8%)
patch tree reduce : 1.62 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 192.41 us (90.8%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.8%)
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 | 5.7798e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.78117928694269 (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.55 us (2.5%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 198.31 us (91.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (61.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 | 5.8017e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.25697120154197 (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.65 us (2.7%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 189.76 us (90.8%)
LB move op cnt : 0
LB apply : 2.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (59.2%)
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 | 5.7510e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.1540427400383 (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.52 us (2.3%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 223.95 us (91.9%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (64.1%)
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 | 5.7785e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.75104559568055 (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.66 us (2.7%)
patch tree reduce : 2.02 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 188.56 us (90.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (54.1%)
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 | 5.7290e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.67409048538403 (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.81 us (2.2%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 246.68 us (92.5%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (61.6%)
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 | 5.7511e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.15474679347405 (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.56 us (2.6%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 194.17 us (90.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.0%)
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 | 5.7363e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.83317266196245 (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 : 5.87 us (2.8%)
patch tree reduce : 1.83 us (0.9%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 188.33 us (90.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (53.9%)
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 | 5.7484e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.09740093171051 (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.25 us (2.2%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 214.91 us (91.6%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.1%)
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 | 5.7634e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.42348752678488 (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.53 us (2.8%)
patch tree reduce : 1.90 us (1.0%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 180.12 us (90.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (59.8%)
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.2552e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.602331978754 (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.37 us (2.3%)
patch tree reduce : 1.61 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 213.20 us (91.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (61.8%)
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.4095e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.96031126239765 (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.43 us (2.4%)
patch tree reduce : 1.56 us (0.7%)
gen split merge : 1.30 us (0.6%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 210.70 us (91.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.5%)
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.5219e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.4065018522659 (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 : 5.42 us (2.3%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 220.45 us (91.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.0%)
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.3802e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.32173450154126 (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.21 us (2.2%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 206.92 us (86.9%)
LB move op cnt : 0
LB apply : 15.49 us (6.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (61.5%)
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.4671e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.21425355650516 (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.38 us (2.4%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 202.87 us (91.3%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (59.9%)
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.4806e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.50796321184686 (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.56 us (2.4%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 210.35 us (91.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (61.8%)
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.3636e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.96173148527157 (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.48 us (2.4%)
patch tree reduce : 2.67 us (1.2%)
gen split merge : 1.60 us (0.7%)
split / merge op : 0/0
apply split merge : 1.75 us (0.8%)
LB compute : 203.42 us (90.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.3%)
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.3413e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.47483253554667 (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.83 us (2.2%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 245.22 us (92.4%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (62.0%)
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.2008e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.4178902067791 (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.60 us (2.2%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 236.36 us (92.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.4%)
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.1967e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.32962326108975 (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.40 us (2.4%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 205.39 us (91.3%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (54.8%)
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.4528e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.90219981400867 (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.52 us (2.3%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 221.92 us (92.0%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.9%)
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.4957e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.83588080707182 (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.46 us (2.3%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 216.78 us (91.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.9%)
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.4527e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.8995353985288 (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.38 us (2.2%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 220.53 us (92.1%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (56.3%)
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.4903e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.71785820003062 (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.67 us (2.6%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 199.33 us (91.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.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.4136e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.048600084193 (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.66 us (2.6%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 202.25 us (91.4%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.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.3686e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.06863583329095 (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.79 us (2.6%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 206.05 us (91.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.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.1471e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.25025422735744 (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 (2.4%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 200.05 us (91.3%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.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.3725e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.15485757338428 (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.36 us (2.4%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 200.78 us (91.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (60.6%)
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.1272e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.81600673093062 (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.54 us (2.1%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 241.14 us (92.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (60.5%)
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 | 3.8192e+05 | 65536 | 2 | 1.716e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.11355314086269 (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.66 us (2.5%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 210.96 us (91.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (57.5%)
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 | 3.9825e+05 | 65536 | 2 | 1.646e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.66789849968427 (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.62 us (2.5%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 202.28 us (91.3%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (60.2%)
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.1039e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.30822829114703 (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.87 us (2.3%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 236.97 us (92.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (63.7%)
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.0712e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.59671619518478 (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.44 us (2.4%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 206.54 us (91.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.9%)
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.9962e+05 | 65536 | 2 | 1.640e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.96579478524846 (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.87 us (2.7%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 201.68 us (91.1%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.5%)
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 | 4.0976e+05 | 65536 | 2 | 1.599e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.17313789503162 (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.49 us (2.3%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 207.49 us (86.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (60.3%)
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 | 4.1451e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.20618882860578 (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.19 us (2.3%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 209.44 us (91.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (57.1%)
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 | 4.1643e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.62462559993698 (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.48 us (2.2%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 233.34 us (92.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (61.4%)
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 | 4.1497e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.30559721713979 (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 : 6.16 us (2.2%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 252.25 us (92.1%)
LB move op cnt : 0
LB apply : 4.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.6%)
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 | 4.1709e+05 | 65536 | 2 | 1.571e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.76746769608268 (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.39 us (2.3%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 210.63 us (91.6%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.9%)
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.1615e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.56371246434844 (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.31 us (2.2%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 222.65 us (92.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.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 | 4.0279e+05 | 65536 | 2 | 1.627e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.65465000541262 (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.45 us (2.3%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 222.56 us (92.0%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (60.2%)
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 | 4.0057e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.17280768845295 (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.57 us (2.4%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 208.57 us (91.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (60.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 | 4.0418e+05 | 65536 | 2 | 1.621e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.9578156849342 (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 : 5.30 us (1.0%)
patch tree reduce : 1.72 us (0.3%)
gen split merge : 1.00 us (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.2%)
LB compute : 521.01 us (96.3%)
LB move op cnt : 0
LB apply : 3.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (63.9%)
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 | 4.0593e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.33783820860145 (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.78 us (2.5%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 214.44 us (91.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (59.6%)
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 | 3.9084e+05 | 65536 | 2 | 1.677e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.05558184856845 (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 : 5.52 us (2.5%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 204.58 us (91.4%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (57.3%)
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 | 3.9072e+05 | 65536 | 2 | 1.677e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.02970607890174 (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.49 us (2.2%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 228.92 us (92.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (58.5%)
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 | 3.9609e+05 | 65536 | 2 | 1.655e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.19643399204097 (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.54 us (2.2%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 233.78 us (92.4%)
LB move op cnt : 0
LB apply : 3.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (59.6%)
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 | 4.0136e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.34338300221157 (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.57 us (2.5%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 199.94 us (91.0%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (61.5%)
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.7833e+05 | 65536 | 2 | 1.732e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.33221746762918 (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.90 us (2.7%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 199.09 us (91.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (52.3%)
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.8825e+05 | 65536 | 2 | 1.688e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.49211757605659 (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.59 us (2.4%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 211.91 us (91.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.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.0133e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.33684752918397 (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.53 us (2.4%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 207.66 us (91.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (56.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 | 3.9720e+05 | 65536 | 2 | 1.650e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.4392386214761 (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.76 us (2.3%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 225.40 us (92.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (56.5%)
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 | 3.9945e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.92863915413194 (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.14 us (2.2%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 215.04 us (91.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (58.9%)
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.9652e+05 | 65536 | 2 | 1.653e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.29155053172228 (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.35 us (2.1%)
patch tree reduce : 1.59 us (0.6%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 236.72 us (92.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (57.2%)
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 | 4.0706e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.58369698254846 (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 : 5.67 us (2.4%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 216.72 us (91.7%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.7%)
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 | 3.7950e+05 | 65536 | 2 | 1.727e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.58743408011635 (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.64 us (2.3%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 219.99 us (91.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (66.7%)
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 | 3.7302e+05 | 65536 | 2 | 1.757e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.17582297535436 (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 : 6.01 us (2.4%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 227.70 us (91.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (62.2%)
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 | 3.7101e+05 | 65536 | 2 | 1.766e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.7385299195644 (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.26 us (2.3%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 204.94 us (91.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (62.3%)
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.7147e+05 | 65536 | 2 | 1.764e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.83887560777606 (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.77 us (2.5%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 211.98 us (91.6%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.5%)
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.7295e+05 | 65536 | 2 | 1.757e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.16110212317908 (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.49 us (2.0%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 252.08 us (92.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (59.2%)
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.7471e+05 | 65536 | 2 | 1.749e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.5438779894212 (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.98 us (2.6%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 209.92 us (91.1%)
LB move op cnt : 0
LB apply : 3.55 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (55.5%)
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.7339e+05 | 65536 | 2 | 1.755e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.25672910865848 (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.71 us (2.5%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 206.83 us (91.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (63.5%)
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.7443e+05 | 65536 | 2 | 1.750e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.48262520180091 (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.54 us (2.4%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 207.66 us (91.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.6%)
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 | 3.7513e+05 | 65536 | 2 | 1.747e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.63578096372407 (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.87 us (2.5%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 214.07 us (91.3%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (59.8%)
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.4104e+05 | 65536 | 2 | 1.922e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.21753604779708 (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.95 us (2.4%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 231.91 us (92.1%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.6%)
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.7839e+05 | 65536 | 2 | 1.732e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.34614122210628 (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.95 us (2.5%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 217.10 us (91.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (55.3%)
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 | 3.8905e+05 | 65536 | 2 | 1.684e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.66594624902747 (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.58 us (2.1%)
patch tree reduce : 1.51 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 240.84 us (92.7%)
LB move op cnt : 0
LB apply : 2.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (58.5%)
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 | 3.8900e+05 | 65536 | 2 | 1.685e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.65534138178968 (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.27 us (2.3%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 209.68 us (91.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (59.2%)
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 | 3.8946e+05 | 65536 | 2 | 1.683e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.75389617638227 (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.75 us (2.6%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 205.47 us (91.2%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (61.0%)
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 | 3.8757e+05 | 65536 | 2 | 1.691e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.34315966828278 (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.26 us (2.0%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 237.99 us (92.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.6%)
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 | 3.8869e+05 | 65536 | 2 | 1.686e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.58747264763204 (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.51 us (2.2%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 235.94 us (92.3%)
LB move op cnt : 0
LB apply : 3.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (62.6%)
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 | 3.8759e+05 | 65536 | 2 | 1.691e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.34647187063861 (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.44 us (2.3%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 213.30 us (91.8%)
LB move op cnt : 0
LB apply : 2.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (56.5%)
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 | 3.8784e+05 | 65536 | 2 | 1.690e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.40248249516853 (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.66 us (2.3%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 227.70 us (91.9%)
LB move op cnt : 0
LB apply : 3.76 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (60.6%)
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 | 3.8492e+05 | 65536 | 2 | 1.703e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.76656465825177 (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.58 us (2.2%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 236.28 us (92.1%)
LB move op cnt : 0
LB apply : 3.66 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.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 | 3.6292e+05 | 65536 | 2 | 1.806e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.9785595447086 (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.33 us (2.3%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 211.15 us (91.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (55.6%)
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 | 3.6769e+05 | 65536 | 2 | 1.782e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.01796855829842 (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.11 us (2.1%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 221.02 us (92.2%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (59.3%)
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 | 3.8978e+05 | 65536 | 2 | 1.681e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.82347768042816 (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.69 us (2.5%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.6%)
LB compute : 209.99 us (91.5%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.1%)
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 | 3.8889e+05 | 65536 | 2 | 1.685e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.6301569172005 (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.89 us (2.4%)
patch tree reduce : 1.57 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 222.94 us (92.1%)
LB move op cnt : 0
LB apply : 3.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (56.7%)
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 | 3.9099e+05 | 65536 | 2 | 1.676e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.08740501346905 (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.53 us (2.3%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 224.68 us (92.1%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (50.0%)
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.9158e+05 | 65536 | 2 | 1.674e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.21564316223956 (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.32 us (2.3%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 216.68 us (92.1%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.7%)
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.4162e+05 | 65536 | 2 | 1.918e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.34423616032898 (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.41 us (2.4%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.32 us (0.6%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 206.64 us (91.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (54.2%)
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 | 3.6737e+05 | 65536 | 2 | 1.784e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.94626401373434 (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.54 us (2.4%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 207.71 us (91.6%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (55.4%)
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 | 3.6929e+05 | 65536 | 2 | 1.775e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.36585509876477 (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.53 us (2.4%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 210.61 us (91.8%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (59.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.0129e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.32819737712983 (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.73 us (2.6%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 198.85 us (91.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.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.0057e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.17286009480387 (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.50 us (2.5%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 200.00 us (91.2%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.3%)
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 | 3.9779e+05 | 65536 | 2 | 1.648e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.56685515012747 (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.81 us (2.6%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 201.73 us (91.0%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.1%)
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.0094e+05 | 65536 | 2 | 1.635e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.25350715374489 (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.40 us (1.9%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 268.73 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.29 us (62.9%)
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 | 3.9941e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.92002322846885 (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.25 us (2.1%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 236.94 us (92.6%)
LB move op cnt : 0
LB apply : 3.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.3%)
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.1535e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.38798215171391 (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.43 us (2.5%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 196.27 us (91.2%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.8%)
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 | 4.0990e+05 | 65536 | 2 | 1.599e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.20265918679235 (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 : 5.53 us (2.5%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 200.35 us (91.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.8%)
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 | 4.0603e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.3609529153879 (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.54 us (2.2%)
patch tree reduce : 1.59 us (0.6%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 227.09 us (92.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.8%)
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 | 3.9832e+05 | 65536 | 2 | 1.645e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.68227454714638 (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.73 us (2.6%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 202.59 us (91.3%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.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 | 3.9580e+05 | 65536 | 2 | 1.656e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.13341716201516 (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.18 us (2.3%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 204.97 us (91.4%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (58.7%)
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 | 3.9816e+05 | 65536 | 2 | 1.646e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.64874622249523 (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.97 us (2.7%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.35 us (0.6%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 204.48 us (91.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (55.1%)
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.0286e+05 | 65536 | 2 | 1.627e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.67097467291293 (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 : 5.29 us (2.3%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 207.79 us (91.7%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (54.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.0145e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.3635357209173 (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.34 us (2.4%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 203.01 us (91.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (56.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.9766e+05 | 65536 | 2 | 1.648e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.53792268883741 (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 : 5.61 us (2.5%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 204.90 us (91.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (52.4%)
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 | 4.0038e+05 | 65536 | 2 | 1.637e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.1314339381264 (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.49 us (2.3%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 217.38 us (91.8%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (54.7%)
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 | 4.0307e+05 | 65536 | 2 | 1.626e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.71725514396027 (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.73 us (2.6%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 200.94 us (91.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.3%)
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 | 4.1245e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.75806747575268 (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.15 us (2.2%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 212.28 us (92.0%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (52.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.0441e+05 | 65536 | 2 | 1.621e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.00875423950474 (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 : 5.63 us (2.6%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 197.08 us (91.2%)
LB move op cnt : 0
LB apply : 2.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.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 | 4.1586e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.50060880896116 (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.68 us (2.3%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 232.23 us (92.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (54.8%)
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.1841e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.05462175828333 (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.36 us (2.3%)
patch tree reduce : 1.60 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 211.72 us (91.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (62.2%)
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.1516e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.34752942617004 (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.40 us (2.3%)
patch tree reduce : 1.55 us (0.7%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 210.42 us (91.2%)
LB move op cnt : 0
LB apply : 4.05 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (58.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.1768e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.89596849306056 (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.06 us (2.3%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 204.54 us (91.6%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.3%)
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.1414e+05 | 65536 | 2 | 1.582e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.12513260206346 (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.19 us (2.4%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 199.57 us (91.3%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.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.1354e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.99574458871747 (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.78 us (2.3%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 227.66 us (92.1%)
LB move op cnt : 0
LB apply : 3.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (52.0%)
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.0103e+05 | 65536 | 2 | 1.634e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.27254788827898 (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.07 us (2.3%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 206.91 us (91.9%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.1%)
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.9356e+05 | 65536 | 2 | 1.665e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.64670087117489 (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.41 us (2.3%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 217.23 us (92.1%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (53.6%)
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 | 5.4682e+05 | 65536 | 2 | 1.198e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.99997774455196 (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.34 us (2.4%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 206.75 us (91.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (60.1%)
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.0073e+05 | 65536 | 2 | 1.635e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.20746866477681 (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.47 us (2.4%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 205.82 us (91.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (61.3%)
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.8806e+05 | 65536 | 2 | 1.689e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.45065923332693 (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.19 us (2.3%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 208.15 us (91.7%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (60.2%)
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.0013e+05 | 65536 | 2 | 1.638e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.07669522942192 (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 : 5.90 us (2.7%)
patch tree reduce : 1.69 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 196.98 us (90.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (57.1%)
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.0069e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.19785236281302 (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.62 us (2.4%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 215.47 us (91.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.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 | 3.9888e+05 | 65536 | 2 | 1.643e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.80550479691392 (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.59 us (2.5%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 207.30 us (91.3%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (63.6%)
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 | 3.9916e+05 | 65536 | 2 | 1.642e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.86565648396832 (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.28 us (2.0%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 246.96 us (92.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (64.5%)
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.9959e+05 | 65536 | 2 | 1.640e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.95841913812647 (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.58 us (2.5%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 203.49 us (91.3%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.0%)
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 | 4.0046e+05 | 65536 | 2 | 1.637e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.14771313093411 (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.58 us (2.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 216.76 us (91.6%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.7%)
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.9684e+05 | 65536 | 2 | 1.651e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.3607651914446 (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.59 us (2.6%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 197.69 us (91.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (51.1%)
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 | 4.0240e+05 | 65536 | 2 | 1.629e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.5703535004874 (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.58 us (2.6%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 197.76 us (91.1%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (56.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.9697e+05 | 65536 | 2 | 1.651e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.38987322869644 (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.61 us (2.2%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 231.90 us (92.3%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (60.3%)
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.6472e+05 | 65536 | 2 | 1.797e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.37045042764395 (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.24 us (2.4%)
patch tree reduce : 1.67 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 199.36 us (91.4%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (51.2%)
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.9688e+05 | 65536 | 2 | 1.651e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.369816555275 (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.22 us (2.1%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 224.20 us (92.0%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.9%)
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.9202e+05 | 65536 | 2 | 1.672e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.31131285412754 (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.77 us (2.6%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 206.61 us (91.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.2%)
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.9625e+05 | 65536 | 2 | 1.654e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.23287242733103 (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.45 us (2.2%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 225.68 us (92.2%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.5%)
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.9237e+05 | 65536 | 2 | 1.670e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.3880437280561 (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.36 us (2.4%)
patch tree reduce : 1.70 us (0.8%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 202.58 us (91.4%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (56.1%)
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 | 4.0088e+05 | 65536 | 2 | 1.635e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.23892651743542 (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.41 us (2.3%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 214.71 us (91.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.0%)
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 | 4.0008e+05 | 65536 | 2 | 1.638e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.06469214058599 (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.38 us (2.3%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 216.27 us (91.9%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (61.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 | 4.0370e+05 | 65536 | 2 | 1.623e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.85358271528175 (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.25 us (2.3%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 212.61 us (91.7%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.8%)
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.0590e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.33313292318057 (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.28 us (2.1%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.38 us (0.6%)
LB compute : 227.13 us (92.0%)
LB move op cnt : 0
LB apply : 3.62 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.8%)
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.1096e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.43299501141541 (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.55 us (2.3%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 224.28 us (92.2%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (58.5%)
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 | 4.0914e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.0375838003578 (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.23 us (2.2%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 213.43 us (91.7%)
LB move op cnt : 0
LB apply : 3.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (55.2%)
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.1555e+05 | 65536 | 2 | 1.577e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.43278460344966 (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.15 us (2.2%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 214.38 us (91.7%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (54.0%)
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.2360e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.18375932959954 (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.46 us (2.4%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 209.70 us (91.2%)
LB move op cnt : 0
LB apply : 3.58 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (55.5%)
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 | 4.1740e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.83471684723729 (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.81 us (2.3%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 237.48 us (92.5%)
LB move op cnt : 0
LB apply : 3.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.8%)
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 | 4.0018e+05 | 65536 | 2 | 1.638e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.08782747250157 (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.29 us (2.3%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 207.06 us (91.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (57.5%)
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 | 3.9423e+05 | 65536 | 2 | 1.662e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.79332574504203 (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.69 us (2.4%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 220.48 us (91.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (61.0%)
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 | 3.9815e+05 | 65536 | 2 | 1.646e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.64596972911285 (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.91 us (2.1%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 257.48 us (92.8%)
LB move op cnt : 0
LB apply : 3.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (64.0%)
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 | 3.9962e+05 | 65536 | 2 | 1.640e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.96595159356549 (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 : 20.92 us (8.3%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 217.26 us (86.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.1%)
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 | 3.9282e+05 | 65536 | 2 | 1.668e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.48581592297218 (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.96 us (2.7%)
patch tree reduce : 1.71 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 198.67 us (90.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (55.3%)
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.0618e+05 | 65536 | 2 | 1.613e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.39262939428606 (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.35 us (2.4%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 205.00 us (91.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.6%)
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.0058e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.17337567725512 (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.26 us (2.3%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 212.25 us (92.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.8%)
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 | 3.9563e+05 | 65536 | 2 | 1.657e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.09675407845857 (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.69 us (2.4%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 215.62 us (91.8%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.9%)
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 | 3.9759e+05 | 65536 | 2 | 1.648e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.52395481583551 (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.32 us (2.1%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 234.16 us (92.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (60.7%)
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.0494e+05 | 65536 | 2 | 1.618e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.12316641436112 (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.38 us (2.4%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 205.60 us (91.8%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.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.0243e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.57767512587841 (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.25 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 : 971.00 ns (0.3%)
LB compute : 303.47 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.44 us (61.0%)
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.0016e+05 | 65536 | 2 | 1.638e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.08386673980202 (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.69 us (2.6%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 199.23 us (91.2%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (51.3%)
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.1988e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.37371331446798 (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.41 us (2.1%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 233.38 us (92.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (62.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.0782e+05 | 65536 | 2 | 1.607e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.7506500091495 (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.37 us (2.4%)
patch tree reduce : 1.52 us (0.7%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 202.31 us (91.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (56.8%)
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.0842e+05 | 65536 | 2 | 1.605e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.88086096037753 (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.58 us (2.6%)
patch tree reduce : 1.66 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 197.16 us (91.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (56.2%)
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.0465e+05 | 65536 | 2 | 1.620e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.06102612657172 (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.57 us (2.3%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 218.24 us (91.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (57.4%)
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.0053e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.1632486124892 (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.35 us (2.4%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 204.14 us (91.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (55.1%)
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.0522e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.18399511693853 (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.53 us (2.5%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 203.28 us (91.5%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (56.1%)
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.0186e+05 | 65536 | 2 | 1.631e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.45340451004482 (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.91 us (2.7%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 200.71 us (91.0%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (58.8%)
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.0806e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.80315454376404 (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.78 us (2.4%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 218.33 us (91.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (56.2%)
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 | 4.0170e+05 | 65536 | 2 | 1.631e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.41890112524231 (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.60 us (2.3%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 220.16 us (91.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (87.7%)
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 | 3.9469e+05 | 65536 | 2 | 1.660e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.04673191705602 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 688.45867322 (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.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 : 3.28 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 : 841.00 ns (0.4%)
patch tree reduce : 1.05 us (0.4%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.4%)
LB compute : 226.38 us (96.2%)
LB move op cnt : 0
LB apply : 2.50 us (1.1%)
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 : 9.16 us (3.5%)
patch tree reduce : 2.17 us (0.8%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 241.59 us (91.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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 | 5.4202e+05 | 65536 | 2 | 1.209e-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.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 218.89 us (91.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.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 | 5.5928e+05 | 65536 | 2 | 1.172e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.71141886771679 (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.57 us (2.4%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 208.58 us (91.6%)
LB move op cnt : 0
LB apply : 2.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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 | 5.7187e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.4507869639015 (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.83 us (2.5%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 215.02 us (91.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.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 | 5.7538e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.2144014460461 (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.25 us (2.2%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 213.81 us (91.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (58.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 | 5.7597e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.3432612802734 (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.72 us (2.5%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 212.48 us (91.6%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.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 | 5.7551e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.24282452478272 (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.26 us (2.2%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 217.32 us (91.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 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.3911e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.55958571153056 (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.47 us (2.4%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 208.57 us (91.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.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.0031e+05 | 65536 | 2 | 1.637e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.1163159975673 (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.42 us (2.4%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 203.94 us (91.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (51.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.9866e+05 | 65536 | 2 | 1.644e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.75569239783137 (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.57 us (2.5%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 198.88 us (91.0%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.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.9701e+05 | 65536 | 2 | 1.651e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.39809500172571 (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.49 us (2.3%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 215.69 us (91.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (51.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.9296e+05 | 65536 | 2 | 1.668e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.51549818516861 (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.40 us (2.4%)
patch tree reduce : 1.70 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 204.00 us (91.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.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.0505e+05 | 65536 | 2 | 1.618e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.14782250991254 (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.90 us (2.5%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.45 us (0.6%)
split / merge op : 0/0
apply split merge : 2.00 us (0.9%)
LB compute : 213.81 us (91.1%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (49.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.9617e+05 | 65536 | 2 | 1.654e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.21513527916505 (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.79 us (2.2%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 242.95 us (92.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.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.9132e+05 | 65536 | 2 | 1.675e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.15989232400389 (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.81 us (2.4%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 221.11 us (91.8%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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.0243e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.57775138602946 (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.96 us (2.2%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 242.34 us (91.3%)
LB move op cnt : 0
LB apply : 5.89 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (56.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.0525e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.1910900454288 (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.58 us (2.5%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 208.45 us (91.6%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (52.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.9688e+05 | 65536 | 2 | 1.651e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.3701961329173 (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.26 us (2.2%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 219.74 us (92.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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 | 3.9326e+05 | 65536 | 2 | 1.666e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.58220627945204 (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.52 us (2.4%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 208.19 us (91.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (53.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.8805e+05 | 65536 | 2 | 1.689e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.44859973202075 (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.52 us (2.3%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 216.33 us (91.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (50.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.8760e+05 | 65536 | 2 | 1.691e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.3488146956166 (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.81 us (2.4%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 218.62 us (91.3%)
LB move op cnt : 0
LB apply : 4.07 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.9973e+05 | 65536 | 2 | 1.640e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.98926935844636 (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.62 us (2.5%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 205.45 us (91.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.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.0287e+05 | 65536 | 2 | 1.627e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.6721173366753 (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.74 us (2.5%)
patch tree reduce : 1.58 us (0.7%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 212.27 us (91.7%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.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.0062e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.1832558335861 (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.86 us (2.3%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 238.28 us (92.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (55.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.1613e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.55898894145362 (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.52 us (2.2%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 227.66 us (92.2%)
LB move op cnt : 0
LB apply : 3.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (57.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.0259e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.61118903213676 (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.72 us (2.4%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 215.92 us (91.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (53.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.0196e+05 | 65536 | 2 | 1.630e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.47380779520104 (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 : 16.29 us (6.9%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 203.71 us (86.8%)
LB move op cnt : 0
LB apply : 3.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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.9224e+05 | 65536 | 2 | 1.671e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.35945572438386 (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.66 us (2.5%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 202.35 us (91.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (54.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.9731e+05 | 65536 | 2 | 1.650e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.46228666233768 (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.50 us (2.4%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 210.22 us (91.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (55.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.9943e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.92355512904416 (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.52 us (2.1%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 249.22 us (92.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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.0704e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.5797851659507 (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.68 us (2.6%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 201.90 us (91.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.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.0492e+05 | 65536 | 2 | 1.619e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.11782306840496 (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.61 us (2.4%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 215.18 us (91.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.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.9590e+05 | 65536 | 2 | 1.655e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.15675115055545 (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.41 us (2.1%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 233.08 us (92.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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.1059e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.3537071159888 (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.52 us (2.4%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 207.95 us (91.6%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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.0624e+05 | 65536 | 2 | 1.613e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.4068706448335 (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.47 us (2.3%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 215.15 us (91.8%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (51.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.9897e+05 | 65536 | 2 | 1.643e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.82302136923316 (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.52 us (2.5%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 202.52 us (91.3%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (55.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.1203e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.66686863985164 (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.55 us (2.5%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 201.84 us (91.2%)
LB move op cnt : 0
LB apply : 2.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.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.0537e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.21589812602916 (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.70 us (2.3%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 224.50 us (91.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.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.0137e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.34673989577254 (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.30 us (2.3%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 213.43 us (91.8%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (53.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.0213e+05 | 65536 | 2 | 1.630e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.5107206384174 (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.34 us (2.3%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 209.77 us (91.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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.9481e+05 | 65536 | 2 | 1.660e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.91953550547866 (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.45 us (2.2%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 224.78 us (92.1%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.0245e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.58139233456605 (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.30 us (2.2%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 222.85 us (92.0%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.8995e+05 | 65536 | 2 | 1.681e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.86185848353361 (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.24 us (2.3%)
patch tree reduce : 1.52 us (0.7%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 208.36 us (91.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.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.0461e+05 | 65536 | 2 | 1.620e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.05132020966813 (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.23 us (2.0%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 246.42 us (92.9%)
LB move op cnt : 0
LB apply : 3.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.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.9869e+05 | 65536 | 2 | 1.644e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.76267014824094 (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.35 us (1.6%)
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.04 us (0.3%)
LB compute : 325.02 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.58 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.0703e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.57757082490879 (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.48 us (2.3%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 219.31 us (91.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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.0794e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.77703678591746 (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.48 us (2.4%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 204.42 us (90.9%)
LB move op cnt : 0
LB apply : 3.84 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (45.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.1458e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.22037209719423 (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.27 us (2.2%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 221.80 us (91.9%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (54.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.0935e+05 | 65536 | 2 | 1.601e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.08357135914999 (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 (2.4%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 201.05 us (91.4%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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 | 4.1160e+05 | 65536 | 2 | 1.592e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.57289476912592 (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.57 us (2.2%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 239.63 us (92.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.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.1521e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.35880031093635 (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.63 us (2.5%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 201.90 us (91.0%)
LB move op cnt : 0
LB apply : 3.53 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (56.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.1738e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.8312607935527 (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.62 us (2.5%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 208.04 us (91.3%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.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.1585e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.49662953181726 (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.01 us (2.2%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 212.37 us (91.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (50.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.1051e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.33541103446684 (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.53 us (2.3%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 215.99 us (91.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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.0952e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.1196023806388 (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.12 us (2.2%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 212.48 us (91.6%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.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.1336e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.95644490790148 (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.89 us (2.5%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 216.45 us (91.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (56.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.0766e+05 | 65536 | 2 | 1.608e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.71453105103697 (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.69 us (2.3%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 223.07 us (91.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (51.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.0984e+05 | 65536 | 2 | 1.599e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.19059007523157 (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.30 us (2.0%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 239.73 us (92.6%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.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.1440e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.18166365029161 (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.61 us (2.5%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 202.35 us (91.0%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (57.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.1526e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.36912675994472 (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.35 us (2.3%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 213.75 us (91.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (54.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.0162e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.40046162335067 (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.73 us (2.6%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 198.93 us (91.0%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.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.0793e+05 | 65536 | 2 | 1.607e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.77474018343395 (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.35 us (2.3%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 211.64 us (91.6%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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.1242e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.75021259413721 (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.70 us (2.5%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 205.46 us (91.5%)
LB move op cnt : 0
LB apply : 2.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (52.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.1033e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.29652884313136 (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.71 us (2.3%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 224.02 us (91.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.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.1265e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.8009514239934 (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.47 us (2.5%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 202.61 us (91.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.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.1610e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.55282169105271 (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.58 us (2.3%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 222.53 us (91.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.1718e+05 | 65536 | 2 | 1.571e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.78727455656308 (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.61 us (2.1%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 247.47 us (92.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.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.0371e+05 | 65536 | 2 | 1.623e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.8558674691381 (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.73 us (2.3%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 230.02 us (92.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.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.0448e+05 | 65536 | 2 | 1.620e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.02370938829307 (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.77 us (2.5%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 209.31 us (91.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (54.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.0670e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.5058827338423 (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.42 us (2.4%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 207.97 us (91.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.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.0865e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.93158955654769 (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.58 us (2.5%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 206.41 us (91.2%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.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.1687e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.71873320516912 (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.67 us (2.4%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 214.19 us (91.6%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (55.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.0723e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.62156480251076 (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.44 us (2.4%)
patch tree reduce : 1.71 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 205.88 us (91.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (53.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.1175e+05 | 65536 | 2 | 1.592e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.60511663308637 (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.54 us (2.5%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 199.81 us (91.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (55.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.9916e+05 | 65536 | 2 | 1.642e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.86539566523051 (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.37 us (2.3%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 219.56 us (92.0%)
LB move op cnt : 0
LB apply : 2.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.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.0786e+05 | 65536 | 2 | 1.607e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.75950195389586 (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.92 us (2.6%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 210.51 us (91.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (53.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.8902e+05 | 65536 | 2 | 1.685e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.65769655718971 (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 : 20.55 us (8.5%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 208.67 us (85.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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.0512e+05 | 65536 | 2 | 1.618e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.16177670462909 (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.61 us (2.0%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 263.27 us (93.1%)
LB move op cnt : 0
LB apply : 3.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.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.9449e+05 | 65536 | 2 | 1.661e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.84835304234083 (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.33 us (2.1%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 239.31 us (92.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.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.9814e+05 | 65536 | 2 | 1.646e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.64287174591541 (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.63 us (2.5%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 208.17 us (91.4%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.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.1885e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.15017515242987 (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.32 us (2.0%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 246.91 us (92.9%)
LB move op cnt : 0
LB apply : 3.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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.1111e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.4660757037712 (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.37 us (2.3%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 211.31 us (91.8%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.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.0289e+05 | 65536 | 2 | 1.627e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.67620379664561 (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 : 6.16 us (2.7%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 206.31 us (91.1%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.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.1402e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.09888515404748 (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.55 us (2.2%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 232.94 us (92.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (55.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.1446e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.1959264362088 (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.71 us (2.0%)
patch tree reduce : 1.77 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 : 263.16 us (92.9%)
LB move op cnt : 0
LB apply : 3.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 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.1499e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.31083641181057 (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.49 us (2.0%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 251.14 us (92.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.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.3105e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.80563172562465 (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.35 us (2.3%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 210.25 us (91.6%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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.1733e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.8205728345704 (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.49 us (2.1%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 240.35 us (92.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (52.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.1021e+05 | 65536 | 2 | 1.598e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.27031419821256 (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.42 us (2.2%)
patch tree reduce : 1.58 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 229.12 us (92.1%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (56.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.1505e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.32310648065497 (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.96 us (2.6%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 209.99 us (91.3%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (48.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.1448e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.19935478550161 (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.25 us (2.3%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.30 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 209.80 us (91.8%)
LB move op cnt : 0
LB apply : 2.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.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.1178e+05 | 65536 | 2 | 1.592e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.61178720745295 (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.67 us (2.4%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 214.28 us (91.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.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.0514e+05 | 65536 | 2 | 1.618e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.16576668689592 (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.65 us (2.5%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 209.46 us (91.4%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.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.0647e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.45652070348903 (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.49 us (2.4%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 209.04 us (91.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (72.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.1900e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.18201345605974 (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.92 us (2.3%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 241.74 us (92.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.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.1500e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.31241309455076 (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.35 us (2.2%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 225.84 us (92.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (54.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.2368e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.20183723429669 (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.23 us (2.1%)
patch tree reduce : 1.48 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 229.57 us (92.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (53.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.2100e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.6173917734889 (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.79 us (2.6%)
patch tree reduce : 1.71 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 203.04 us (91.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (56.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.2364e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.19331298766289 (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.60 us (2.5%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 202.74 us (91.0%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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.1565e+05 | 65536 | 2 | 1.577e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.45379511331288 (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.78 us (2.1%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 253.05 us (92.8%)
LB move op cnt : 0
LB apply : 3.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.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.2209e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.85520444547231 (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.93 us (2.4%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 225.42 us (91.5%)
LB move op cnt : 0
LB apply : 3.67 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (57.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.3289e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.20639644280351 (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.51 us (2.5%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 198.68 us (91.2%)
LB move op cnt : 0
LB apply : 2.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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.2733e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.99558514512839 (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.52 us (2.5%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 199.45 us (91.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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.3021e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.62318426438884 (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.45 us (2.2%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 225.28 us (92.1%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (56.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.2286e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.0221241125224 (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.33 us (2.3%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 217.51 us (91.9%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (50.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.2384e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.2363186369629 (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.67 us (2.3%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 230.42 us (92.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (58.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.3633e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.95520406148252 (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 (2.5%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 207.68 us (91.2%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (71.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.5004e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.9390046486881 (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.40 us (2.3%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 216.17 us (91.6%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (50.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.3465e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.58983480136304 (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 : 6.01 us (2.3%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 241.31 us (92.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.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.2696e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.9147764549823 (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.82 us (2.3%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 230.28 us (91.7%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 4.1216e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.69341939929967 (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.69 us (2.4%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 214.56 us (91.7%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (51.8%)
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 | 5.8489e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.28421431224497 (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.72 us (2.4%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 220.49 us (92.0%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.1%)
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 | 5.1869e+05 | 65536 | 2 | 1.263e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.87853414883428 (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.40 us (2.5%)
patch tree reduce : 1.68 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 194.54 us (91.1%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.6%)
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 | 5.7632e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.41998698647984 (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.05 us (1.9%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 249.90 us (92.7%)
LB move op cnt : 0
LB apply : 3.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (59.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.4822e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.54117849268913 (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.56 us (2.6%)
patch tree reduce : 1.67 us (0.8%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 192.33 us (90.7%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (52.0%)
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 | 5.0876e+05 | 65536 | 2 | 1.288e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.71669333508252 (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.46 us (2.6%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 190.58 us (90.8%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (51.5%)
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 | 5.8364e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.01167516718286 (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.45 us (2.3%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 218.63 us (91.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (59.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 | 5.6262e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.43846080885147 (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.35 us (2.2%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 219.85 us (92.1%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (54.3%)
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 | 5.8085e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.40459073733113 (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.31 us (2.5%)
patch tree reduce : 1.64 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 193.62 us (90.9%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.7%)
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 | 5.7999e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.21868923896432 (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.21 us (2.3%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 208.40 us (91.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (59.9%)
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 | 5.7894e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.98980082232488 (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.45 us (2.7%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 184.74 us (90.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (51.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 | 5.7956e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.123757810563 (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.44 us (2.6%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 190.06 us (90.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.0%)
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 | 5.0343e+05 | 65536 | 2 | 1.302e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.55574492132249 (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 : 6.27 us (2.6%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 220.01 us (91.3%)
LB move op cnt : 0
LB apply : 3.57 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.6%)
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 | 4.9953e+05 | 65536 | 2 | 1.312e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.70803584608218 (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.57 us (2.7%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 189.50 us (90.6%)
LB move op cnt : 0
LB apply : 3.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.0%)
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 | 5.7898e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.99725829246913 (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.28 us (2.3%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 207.41 us (91.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.3%)
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 | 5.7852e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.89705029204518 (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.77 us (2.7%)
patch tree reduce : 1.60 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 191.02 us (90.8%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (52.2%)
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 | 5.8066e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.36420006986788 (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.24 us (2.5%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 191.53 us (90.9%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (58.6%)
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 | 5.8145e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.53582336565368 (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.39 us (2.2%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 227.36 us (92.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.2%)
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 | 5.8434e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.16389307163729 (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 : 5.95 us (2.8%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 196.46 us (90.9%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (59.2%)
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 | 5.7875e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.94806975714441 (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.73 us (2.6%)
patch tree reduce : 1.69 us (0.8%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 202.29 us (91.2%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (52.1%)
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 | 5.7666e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.49407250374286 (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.94 us (2.8%)
patch tree reduce : 1.84 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 188.72 us (90.5%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.2%)
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 | 5.7989e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.19672094494179 (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.51 us (2.6%)
patch tree reduce : 1.61 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 190.50 us (90.8%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (55.4%)
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 | 5.7956e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.12407122676298 (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.72 us (2.6%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 197.11 us (91.0%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (53.6%)
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 | 5.8371e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.02648321477533 (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.53 us (2.6%)
patch tree reduce : 1.81 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 192.37 us (90.9%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.3%)
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 | 5.8254e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.77221981497557 (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.59 us (2.4%)
patch tree reduce : 1.60 us (0.7%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 212.34 us (91.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (44.3%)
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 | 5.7946e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.10163411721591 (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.85 us (2.8%)
patch tree reduce : 1.86 us (0.9%)
gen split merge : 1.48 us (0.7%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 192.07 us (90.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (52.0%)
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 | 5.7857e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.90762568754663 (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.29 us (2.5%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 193.42 us (91.0%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (60.3%)
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 | 5.6196e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.29478681992184 (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.34 us (2.6%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 184.61 us (90.6%)
LB move op cnt : 0
LB apply : 2.91 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (58.7%)
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 | 5.7037e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.12464919453348 (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.02 us (2.4%)
patch tree reduce : 1.64 us (0.8%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 188.48 us (90.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.9%)
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 | 5.7249e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.58662630605916 (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.31 us (2.6%)
patch tree reduce : 1.69 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 184.69 us (90.7%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (50.7%)
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 | 5.8249e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.76223215021463 (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.89 us (2.4%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 224.95 us (91.9%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (58.6%)
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 | 5.7726e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.62286601588293 (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.19 us (2.0%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 236.32 us (92.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.9%)
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 | 5.7781e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.74312984745818 (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.59 us (2.7%)
patch tree reduce : 1.84 us (0.9%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 189.12 us (90.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.4%)
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 | 5.8795e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.94990313574829 (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.28 us (2.5%)
patch tree reduce : 1.70 us (0.8%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 191.31 us (90.8%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (53.6%)
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 | 5.8043e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.31432192587773 (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.74 us (2.8%)
patch tree reduce : 1.76 us (0.9%)
gen split merge : 1.13 us (0.6%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 182.22 us (90.2%)
LB move op cnt : 0
LB apply : 3.17 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (52.8%)
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 | 5.7810e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.80709405034627 (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.63 us (2.5%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 206.72 us (91.4%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (59.7%)
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 | 5.8202e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.65911573279664 (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.23 us (2.5%)
patch tree reduce : 1.68 us (0.8%)
gen split merge : 1.29 us (0.6%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 190.89 us (90.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (55.3%)
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 | 5.8352e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.98525890078535 (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.92 us (2.7%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 197.06 us (90.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (57.4%)
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 | 5.7571e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.28661640346583 (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.84 us (2.7%)
patch tree reduce : 1.70 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 192.55 us (90.7%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.2%)
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 | 5.6752e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.50507642016039 (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.90 us (2.8%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 193.42 us (90.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.3%)
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.0814e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.81985126447867 (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.46 us (2.3%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 218.22 us (91.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.3%)
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.1627e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.58845107608084 (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.52 us (2.4%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 212.99 us (91.6%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (53.7%)
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 | 4.1475e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.2573419024153 (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.29 us (2.1%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 234.23 us (92.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (63.0%)
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.2610e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.72836313274559 (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.68 us (2.5%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 210.00 us (91.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (64.0%)
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.0934e+05 | 65536 | 2 | 1.601e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.08062568265242 (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 : 17.21 us (7.1%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.31 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 209.85 us (87.0%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (57.6%)
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.1486e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.2814865401128 (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.76 us (2.2%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 236.90 us (92.2%)
LB move op cnt : 0
LB apply : 3.58 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (55.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.1205e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.66999303460335 (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.66 us (2.5%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 204.97 us (91.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (55.6%)
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.3813e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.34511712112484 (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.52 us (2.4%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 210.98 us (91.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (51.6%)
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.3182e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.97269183468323 (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.33 us (2.4%)
patch tree reduce : 1.56 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 205.44 us (91.6%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.0%)
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.2663e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.8423874007315 (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.62 us (2.4%)
patch tree reduce : 1.59 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 219.12 us (91.9%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.6%)
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.1810e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.98635974151736 (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.79 us (2.6%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 200.73 us (91.1%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (49.3%)
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.2428e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.3323973008191 (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.31 us (2.2%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 221.26 us (92.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (54.7%)
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.2667e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.85126543929587 (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.32 us (2.3%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 217.23 us (92.0%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (53.4%)
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.2208e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.85394553909896 (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.54 us (2.4%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 215.97 us (91.7%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (59.5%)
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.2490e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.46741913090034 (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.44 us (2.4%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 203.26 us (91.3%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.7%)
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.3082e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.75469849712715 (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.27 us (2.2%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 220.02 us (91.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (56.5%)
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.3308e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.24604631908102 (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.41 us (2.5%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 199.56 us (91.2%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (59.3%)
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.2641e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.79466079020581 (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.42 us (2.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 204.99 us (91.3%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.3%)
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.2682e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.88476255592506 (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.34 us (2.2%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 226.80 us (92.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.7%)
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.2628e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.76770941227498 (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.39 us (2.0%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 239.15 us (90.6%)
LB move op cnt : 0
LB apply : 4.69 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.0%)
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.2104e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.62754344998358 (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.48 us (2.3%)
patch tree reduce : 1.58 us (0.7%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 215.88 us (91.7%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (57.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.1527e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.37179864637373 (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.13 us (2.1%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 220.53 us (92.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.4%)
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.1537e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.39343609389745 (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 : 16.79 us (7.3%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 199.74 us (86.7%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (63.1%)
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.2388e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.24502147482652 (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.46 us (2.2%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 229.64 us (92.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.3%)
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.1793e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.95120495774245 (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.47 us (2.2%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 228.89 us (92.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.9%)
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.1485e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.2806510122301 (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.65 us (2.1%)
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.12 us (0.4%)
LB compute : 247.28 us (92.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.5%)
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 | 4.0155e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.38448893990298 (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.58 us (2.4%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 210.69 us (91.0%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (51.2%)
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 | 4.2441e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.36122620902415 (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.04 us (2.6%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 214.56 us (91.6%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (61.5%)
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.1714e+05 | 65536 | 2 | 1.571e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.77816682155641 (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.51 us (2.3%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 223.33 us (91.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.3%)
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.3243e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.10460249128184 (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.54 us (2.5%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 203.37 us (91.1%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.1%)
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 | 4.2414e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.30149019288474 (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.93 us (2.6%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 206.44 us (91.3%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (56.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 | 4.2448e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.37559266864837 (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 (2.3%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 215.44 us (91.8%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (57.6%)
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.1846e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.0656552878854 (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.83 us (2.6%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 206.72 us (91.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.0%)
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.2001e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.40334835407768 (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.75 us (1.8%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 291.59 us (93.6%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (63.5%)
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.1739e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.83358288560659 (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.55 us (2.1%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 240.22 us (92.7%)
LB move op cnt : 0
LB apply : 2.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.5%)
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 | 5.2361e+05 | 65536 | 2 | 1.252e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.94874937044517 (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 : 6.20 us (2.3%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 247.44 us (92.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (54.8%)
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.4104e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.97983804244404 (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 : 6.23 us (2.7%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.61 us (0.7%)
LB compute : 208.62 us (90.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.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 | 5.9008e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.41452004883573 (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 : 6.59 us (2.9%)
patch tree reduce : 2.89 us (1.3%)
gen split merge : 1.67 us (0.7%)
split / merge op : 0/0
apply split merge : 1.52 us (0.7%)
LB compute : 201.41 us (89.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.4%)
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 | 6.0116e+05 | 65536 | 2 | 1.090e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.82388286569895 (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.75 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 295.98 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.03 us (53.9%)
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 | 5.7323e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.74677052001694 (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.71 us (2.4%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 217.64 us (91.7%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.4%)
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.7932e+05 | 65536 | 2 | 1.367e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.30913495857679 (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.66 us (2.7%)
patch tree reduce : 1.66 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 187.76 us (90.7%)
LB move op cnt : 0
LB apply : 3.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.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 | 5.9509e+05 | 65536 | 2 | 1.101e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.5033873296797 (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.64 us (2.8%)
patch tree reduce : 1.76 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 184.29 us (90.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.6%)
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 | 5.8970e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.33086270943244 (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.59 us (2.5%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 207.76 us (91.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.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 | 5.4884e+05 | 65536 | 2 | 1.194e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.43820250279265 (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 : 6.18 us (2.6%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.37 us (0.6%)
LB compute : 216.37 us (91.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (58.5%)
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 | 5.4429e+05 | 65536 | 2 | 1.204e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.44959071098711 (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.71 us (2.5%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 210.56 us (91.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (55.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 | 5.9076e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.56063731182414 (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 : 6.20 us (2.8%)
patch tree reduce : 1.57 us (0.7%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 201.19 us (90.9%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (58.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 | 5.9071e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.55056284968387 (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.44 us (1.1%)
patch tree reduce : 1.80 us (0.4%)
gen split merge : 1.17 us (0.2%)
split / merge op : 0/0
apply split merge : 1.41 us (0.3%)
LB compute : 474.43 us (95.7%)
LB move op cnt : 0
LB apply : 4.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (61.1%)
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 | 5.9614e+05 | 65536 | 2 | 1.099e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.73218284760966 (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.47 us (2.3%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 216.52 us (91.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (55.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 | 5.9370e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.2005793673809 (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.72 us (2.5%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 210.76 us (91.4%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (58.1%)
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 | 5.9193e+05 | 65536 | 2 | 1.107e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.81606132505726 (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.31 us (2.6%)
patch tree reduce : 2.26 us (1.1%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 188.03 us (90.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.3%)
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 | 5.9087e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.58633932453074 (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.36 us (2.7%)
patch tree reduce : 1.92 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.6%)
LB compute : 181.73 us (90.5%)
LB move op cnt : 0
LB apply : 2.95 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (55.6%)
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 | 5.9211e+05 | 65536 | 2 | 1.107e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.85421044892317 (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.53 us (2.7%)
patch tree reduce : 1.96 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 184.55 us (90.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.9%)
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 | 5.9096e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.60465135002403 (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.49 us (2.4%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 207.74 us (91.4%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (58.0%)
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 | 5.9651e+05 | 65536 | 2 | 1.099e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.81175917658598 (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.46 us (2.7%)
patch tree reduce : 1.66 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 182.12 us (90.5%)
LB move op cnt : 0
LB apply : 2.97 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.6%)
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 | 5.8637e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.60527774781882 (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.49 us (2.4%)
patch tree reduce : 1.55 us (0.7%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 210.71 us (91.7%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (57.3%)
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 | 5.7729e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.62934610819302 (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.45 us (2.3%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 214.92 us (91.6%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (53.1%)
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 | 5.7742e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.65886686532453 (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.75 us (2.7%)
patch tree reduce : 1.71 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 194.74 us (90.9%)
LB move op cnt : 0
LB apply : 2.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (64.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 | 5.8144e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.53257111245213 (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.43 us (2.3%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 216.98 us (91.8%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (62.0%)
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 | 5.5949e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.75647801875891 (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 (2.8%)
patch tree reduce : 1.51 us (0.7%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 186.04 us (90.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.2%)
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 | 5.6672e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.32950758257967 (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.59 us (2.1%)
patch tree reduce : 1.53 us (0.6%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 242.67 us (92.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (55.4%)
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 | 5.8291e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.85390750358471 (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.54 us (2.3%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 226.06 us (92.0%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (63.1%)
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 | 5.8101e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.43921169128585 (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.84 us (2.3%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 237.13 us (92.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (56.2%)
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 | 5.8013e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.24885309651977 (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.72 us (2.8%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 187.50 us (90.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.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 | 5.8654e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.64210638370658 (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.50 us (2.4%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 208.03 us (91.6%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.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 | 5.5656e+05 | 65536 | 2 | 1.178e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.11925170726333 (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.68 us (2.6%)
patch tree reduce : 1.65 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 196.49 us (91.2%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.7%)
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 | 5.5926e+05 | 65536 | 2 | 1.172e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.70592656410503 (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.63 us (2.6%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.41 us (0.7%)
LB compute : 196.93 us (90.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (53.9%)
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 | 5.7699e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.56577363035954 (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.45 us (2.5%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 197.52 us (90.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.3%)
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 | 5.6709e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.41096071414879 (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.62 us (2.7%)
patch tree reduce : 1.82 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 190.61 us (90.7%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (54.5%)
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 | 5.5344e+05 | 65536 | 2 | 1.184e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.4396149734677 (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 : 6.11 us (2.8%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 200.37 us (90.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (55.3%)
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.3779e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.27287014283729 (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.64 us (2.6%)
patch tree reduce : 1.67 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 194.44 us (90.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (48.9%)
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 | 5.8842e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.0525160224875 (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.59 us (2.4%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 208.74 us (91.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.3%)
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.9457e+05 | 65536 | 2 | 1.325e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.62821911627358 (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 : 17.65 us (8.0%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.38 us (0.6%)
LB compute : 186.97 us (85.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.8%)
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.5879e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.84315422098216 (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.22 us (2.5%)
patch tree reduce : 1.64 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 185.45 us (90.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (48.5%)
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 | 5.9385e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.23304616963762 (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.37 us (2.4%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 205.54 us (91.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (52.6%)
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 | 5.5011e+05 | 65536 | 2 | 1.191e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.71489486288444 (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.54 us (2.7%)
patch tree reduce : 1.78 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 182.74 us (90.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (47.6%)
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 | 5.4551e+05 | 65536 | 2 | 1.201e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.71507546496306 (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.61 us (2.3%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 223.13 us (92.0%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.9%)
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 | 5.8009e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.23845607514794 (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.24 us (2.5%)
patch tree reduce : 1.70 us (0.8%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 190.58 us (90.8%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (53.2%)
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 | 5.8488e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.28133922608677 (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 : 5.41 us (2.4%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 205.03 us (91.2%)
LB move op cnt : 0
LB apply : 3.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.3%)
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 | 5.7420e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.95681701616225 (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.81 us (2.7%)
patch tree reduce : 1.67 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 198.41 us (91.0%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (56.2%)
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 | 5.6970e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.97855469527606 (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.47 us (2.6%)
patch tree reduce : 1.84 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 189.00 us (89.1%)
LB move op cnt : 0
LB apply : 6.62 us (3.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (51.2%)
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 | 5.7265e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.62043158741842 (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 : 5.70 us (2.8%)
patch tree reduce : 1.68 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 186.01 us (90.6%)
LB move op cnt : 0
LB apply : 3.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (52.8%)
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 | 5.7959e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.13079276839508 (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 : 4.86 us (2.3%)
patch tree reduce : 1.84 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 190.42 us (90.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.5%)
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 | 5.7437e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.99527103410713 (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.13 us (2.5%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 189.44 us (90.9%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (57.1%)
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 | 5.6049e+05 | 65536 | 2 | 1.169e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.97308113900104 (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.35 us (2.4%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 205.93 us (91.7%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (59.5%)
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 | 5.7783e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.74759116252112 (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 : 5.70 us (2.6%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 195.50 us (90.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (59.9%)
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 | 5.5290e+05 | 65536 | 2 | 1.185e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.32152987146056 (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.50 us (2.6%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 192.82 us (90.7%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (59.4%)
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 | 5.7417e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.95142201113792 (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.94 us (2.6%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 204.24 us (91.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (60.3%)
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 | 5.7153e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.37714464294895 (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.59 us (2.6%)
patch tree reduce : 1.86 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 194.37 us (90.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.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 | 5.5080e+05 | 65536 | 2 | 1.190e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.86524753359929 (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.46 us (2.3%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 217.92 us (91.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.4%)
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 | 5.8789e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.93785258695648 (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.61 us (2.2%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 235.95 us (92.3%)
LB move op cnt : 0
LB apply : 3.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.9%)
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 | 5.5424e+05 | 65536 | 2 | 1.182e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.61310019725222 (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.60 us (2.5%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 207.58 us (91.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.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.2724e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.97693361284306 (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.41 us (2.5%)
patch tree reduce : 1.71 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 200.61 us (91.2%)
LB move op cnt : 0
LB apply : 3.40 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.4%)
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.1284e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.84265969668498 (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.31 us (2.3%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 206.54 us (91.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (59.7%)
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 | 4.1307e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.89317394374574 (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 : 5.54 us (2.2%)
patch tree reduce : 1.56 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 235.12 us (92.3%)
LB move op cnt : 0
LB apply : 3.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.0%)
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 | 4.1180e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.61589714063011 (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.41 us (2.3%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 213.50 us (91.7%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (53.5%)
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.2497e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.48166033763682 (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.51 us (2.5%)
patch tree reduce : 1.69 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 202.87 us (91.2%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (55.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.2199e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.83378526855671 (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.53 us (2.4%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 211.86 us (91.6%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (64.4%)
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.2594e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.69247192288906 (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.53 us (2.3%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 218.26 us (91.8%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (62.9%)
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.2353e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.16964803265193 (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.56 us (2.5%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 201.31 us (91.3%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (57.0%)
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 | 4.1146e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.54210769235479 (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 : 6.13 us (2.6%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.34 us (0.6%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 218.94 us (91.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.4%)
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.1036e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.30326372115725 (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.35 us (2.3%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 214.93 us (91.8%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (54.6%)
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.1048e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.32964879335252 (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.59 us (2.5%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 206.42 us (91.3%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (52.3%)
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.1523e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.3627202725885 (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.78 us (2.5%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 211.30 us (91.3%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (56.0%)
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 | 4.0376e+05 | 65536 | 2 | 1.623e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.86613101052366 (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 : 5.68 us (2.2%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 239.38 us (92.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (63.1%)
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 | 4.1503e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.31986263616294 (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 : 5.49 us (2.2%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 225.34 us (91.9%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (58.5%)
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 | 4.1363e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.01449897742907 (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.41 us (2.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 203.65 us (91.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (52.5%)
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.1842e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.0567520803324 (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 : 5.72 us (2.6%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 203.40 us (91.3%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.7%)
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.1955e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.30338556278787 (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 : 5.54 us (1.7%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 296.20 us (93.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (63.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 | 4.3688e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.07405415846522 (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.40 us (2.2%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 228.68 us (91.9%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (65.0%)
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 | 4.2734e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.9975195569481 (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 : 5.49 us (2.4%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 213.27 us (91.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.0%)
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 | 4.2679e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.87815956772916 (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.51 us (2.5%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 200.85 us (91.5%)
LB move op cnt : 0
LB apply : 2.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.8%)
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.3149e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.90131455571488 (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.54 us (2.5%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 203.22 us (91.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (52.9%)
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.3045e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.67488896774509 (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 : 5.43 us (2.2%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 224.66 us (92.1%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.7%)
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 | 4.3068e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.7237910157403 (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.51 us (2.4%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 205.50 us (91.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (52.2%)
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 | 4.3251e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.12406148673676 (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.45 us (2.4%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 208.08 us (91.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (52.0%)
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.1863e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.1022941172652 (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 : 5.51 us (2.2%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 230.43 us (92.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (57.9%)
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.1696e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.73854194505009 (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 : 5.87 us (2.6%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 206.42 us (91.1%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (63.1%)
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.2265e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.97810309449133 (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.59 us (2.2%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 237.96 us (92.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (61.3%)
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.2158e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.74418792031717 (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.77 us (2.6%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 205.18 us (91.0%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (65.4%)
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.1363e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.01527846723847 (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.62 us (2.4%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 217.79 us (91.7%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (60.5%)
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.1585e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.49827877747364 (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.27 us (2.1%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 233.10 us (92.2%)
LB move op cnt : 0
LB apply : 3.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (57.5%)
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.1738e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.82973481151917 (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.71 us (0.5%)
patch tree reduce : 1.69 us (0.1%)
gen split merge : 1.05 us (0.1%)
split / merge op : 0/0
apply split merge : 1.05 us (0.1%)
LB compute : 1.15 ms (98.3%)
LB move op cnt : 0
LB apply : 3.89 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.6%)
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.0936e+05 | 65536 | 2 | 1.601e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.08534701517982 (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.20 us (2.2%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 220.98 us (91.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (53.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.1746e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.84768057677022 (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.59 us (2.5%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 203.10 us (91.2%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.3%)
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.1740e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.83505641770168 (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.70 us (2.6%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 201.36 us (90.9%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (7.5%)
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.3103e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.80062885977459 (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.71 us (2.4%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 218.17 us (91.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (63.1%)
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.1903e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.19018499154312 (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.35 us (2.1%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 233.41 us (92.2%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.8%)
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.1899e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.18108193642189 (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.69 us (2.6%)
patch tree reduce : 1.71 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 200.89 us (91.0%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (59.7%)
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.1399e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.09273833755405 (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.40 us (2.4%)
patch tree reduce : 1.56 us (0.7%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 205.80 us (91.7%)
LB move op cnt : 0
LB apply : 2.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.6%)
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.1572e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.46883050878475 (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.53 us (2.5%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 205.07 us (91.4%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (53.7%)
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.1450e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.2035256749043 (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.76 us (2.4%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 224.34 us (92.0%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (57.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.1000e+05 | 65536 | 2 | 1.598e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.22336301892834 (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 : 16.25 us (6.0%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 238.59 us (88.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.5%)
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 | 4.1351e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.98898429078415 (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.70 us (2.5%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 209.38 us (91.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (53.1%)
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 | 4.1288e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.85206017973108 (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.41 us (2.4%)
patch tree reduce : 1.71 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 206.22 us (91.1%)
LB move op cnt : 0
LB apply : 3.98 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (61.8%)
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 | 4.1496e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.3028458116676 (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.73 us (2.4%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 216.51 us (91.8%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.8%)
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 | 4.0956e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.12871235912468 (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.71 us (2.5%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 212.28 us (91.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (57.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.3565e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.80709622949212 (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 : 5.71 us (2.5%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 205.35 us (91.2%)
LB move op cnt : 0
LB apply : 2.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (58.7%)
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 | 4.3476e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.61233569314722 (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.92 us (2.6%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 211.19 us (91.4%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.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.4095e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.9601370016093 (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.73 us (2.1%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 251.83 us (92.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (61.2%)
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.1805e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.97582276256325 (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.50 us (2.3%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 219.67 us (91.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (56.4%)
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.2054e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.51736929474168 (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.84 us (2.4%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 222.27 us (91.5%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (53.9%)
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 | 4.2140e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.70541835978665 (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.99 us (2.6%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.35 us (0.6%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 206.50 us (90.9%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (57.5%)
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 | 4.0012e+05 | 65536 | 2 | 1.638e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.07459510374903 (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.77 us (2.5%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 209.38 us (91.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (58.8%)
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.1834e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.03876959998664 (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 : 5.58 us (2.5%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 199.33 us (90.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (60.2%)
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 | 4.0290e+05 | 65536 | 2 | 1.627e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.680217941522 (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.70 us (2.4%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 213.85 us (91.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (54.4%)
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 | 4.0985e+05 | 65536 | 2 | 1.599e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.1926138043531 (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.76 us (2.1%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 257.30 us (92.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.9%)
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.2873e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.2998621795587 (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.50 us (2.5%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 204.73 us (91.4%)
LB move op cnt : 0
LB apply : 2.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (58.6%)
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.2655e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.82554455464128 (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.57 us (2.4%)
patch tree reduce : 1.59 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 209.17 us (91.5%)
LB move op cnt : 0
LB apply : 3.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (53.5%)
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.2032e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.47043642729174 (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.20 us (2.3%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 205.49 us (91.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.94 us (93.3%)
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 | 4.1767e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.89333811040298 (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.60 us (2.4%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 204.33 us (86.4%)
LB move op cnt : 0
LB apply : 15.64 us (6.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.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.1492e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.29493836412085 (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.81 us (2.3%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 229.86 us (91.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (62.8%)
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.1297e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.87149052881898 (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.22 us (2.2%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 220.72 us (91.9%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (58.6%)
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 | 4.2399e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.26859633321378 (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 : 5.60 us (2.4%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 209.56 us (91.6%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.6%)
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.1761e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.88148771520738 (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.56 us (2.3%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 221.52 us (91.9%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (57.2%)
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 | 4.2541e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.57894467693399 (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 : 5.46 us (2.2%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 224.68 us (91.9%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (59.1%)
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 | 4.2026e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.45797058917607 (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 : 5.66 us (2.5%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 207.73 us (91.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (49.5%)
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.3051e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.68858208446031 (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.59 us (2.2%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 219.10 us (87.2%)
LB move op cnt : 0
LB apply : 15.89 us (6.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (58.5%)
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.2961e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.49107456654033 (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.45 us (2.5%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 199.11 us (91.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.2%)
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 | 2.9496e+05 | 65536 | 2 | 2.222e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.18901143030772 (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 : 5.70 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.15 us (0.4%)
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.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (59.4%)
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 | 5.2014e+05 | 65536 | 2 | 1.260e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.19205571437972 (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.47 us (2.1%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 239.92 us (92.4%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.9%)
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 | 5.8900e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.17823850313434 (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.35 us (2.3%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 214.34 us (91.7%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (58.1%)
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 | 5.8827e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.01907351175643 (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 : 5.29 us (2.4%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 204.07 us (91.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.6%)
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 | 5.8922e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.2273724510702 (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.83 us (2.9%)
patch tree reduce : 1.60 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 182.29 us (90.3%)
LB move op cnt : 0
LB apply : 3.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (55.8%)
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 | 5.4702e+05 | 65536 | 2 | 1.198e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.04217454083934 (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.56 us (2.3%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 212.79 us (87.1%)
LB move op cnt : 0
LB apply : 15.37 us (6.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (60.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.6819e+05 | 65536 | 2 | 1.400e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.88728280751637 (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.71 us (2.5%)
patch tree reduce : 1.70 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.38 us (0.6%)
LB compute : 204.93 us (91.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (47.9%)
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 | 5.7304e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.70574988332575 (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 : 5.66 us (2.7%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 192.66 us (90.7%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (50.5%)
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 | 5.8090e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.41511174051102 (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.48 us (2.5%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 198.28 us (90.9%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (52.7%)
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 | 5.4993e+05 | 65536 | 2 | 1.192e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.67569728668157 (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.68 us (2.6%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 190.82 us (86.1%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.4%)
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 | 5.8400e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.09144887362285 (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 : 5.55 us (2.6%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 193.72 us (91.0%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.0%)
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 | 5.8412e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.1175422575039 (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.41 us (2.3%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 214.20 us (91.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (58.8%)
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 | 5.8099e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.43525850573076 (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 : 5.91 us (2.6%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 204.88 us (91.1%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (59.6%)
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 | 5.8881e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.13619897082387 (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.69 us (1.3%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.3%)
LB compute : 400.99 us (95.0%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (65.3%)
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.2585e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.67370228015089 (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.29 us (2.3%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 207.90 us (91.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.6%)
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.1098e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.43866117262286 (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.79 us (2.1%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 257.10 us (92.8%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.8%)
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.1231e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.72765263824998 (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 (2.5%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 213.03 us (91.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (53.8%)
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.0417e+05 | 65536 | 2 | 1.621e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.95660117069866 (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.07 us (2.2%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 215.22 us (92.0%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.9%)
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.0639e+05 | 65536 | 2 | 1.613e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.43986434741325 (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.47 us (2.3%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 215.93 us (91.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.9%)
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.0764e+05 | 65536 | 2 | 1.608e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.70987568592606 (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.40 us (2.4%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 203.97 us (91.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (73.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.1364e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.01645018968134 (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.34 us (2.2%)
patch tree reduce : 1.44 us (0.6%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 220.61 us (92.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.6%)
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.0966e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.15122048972184 (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.89 us (2.5%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 213.30 us (91.5%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (55.9%)
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 | 4.0476e+05 | 65536 | 2 | 1.619e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.08378084021501 (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.75 us (2.1%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 250.58 us (92.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.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 | 5.3326e+05 | 65536 | 2 | 1.229e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.04940315733896 (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.95 us (2.4%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 227.68 us (91.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (54.0%)
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 | 5.6337e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.60064100396403 (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.85 us (2.3%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 231.99 us (92.3%)
LB move op cnt : 0
LB apply : 3.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (61.4%)
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.0233e+05 | 65536 | 2 | 1.629e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.55462283884198 (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.52 us (2.4%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 208.72 us (91.5%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.5%)
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 | 4.1205e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.6701985377808 (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.64 us (2.5%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 210.39 us (91.6%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (52.5%)
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 | 3.9849e+05 | 65536 | 2 | 1.645e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.719591612671 (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.09 us (2.2%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 216.26 us (91.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (55.7%)
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.9948e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.93530222166844 (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.38 us (2.5%)
patch tree reduce : 1.62 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 195.48 us (91.0%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (55.9%)
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.0387e+05 | 65536 | 2 | 1.623e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.89032410758333 (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.30 us (1.9%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 253.93 us (92.9%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (54.3%)
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.9810e+05 | 65536 | 2 | 1.646e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.63500521142407 (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.54 us (2.4%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 211.13 us (91.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (58.5%)
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.9777e+05 | 65536 | 2 | 1.648e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.56396890419954 (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.86 us (2.6%)
patch tree reduce : 1.57 us (0.7%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.38 us (0.6%)
LB compute : 205.66 us (91.0%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (54.6%)
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 | 3.9796e+05 | 65536 | 2 | 1.647e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.60508459491443 (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.89 us (2.6%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 207.27 us (91.3%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (53.2%)
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 | 3.9210e+05 | 65536 | 2 | 1.671e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.32969714117948 (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.63 us (2.0%)
patch tree reduce : 1.74 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 : 257.84 us (92.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (61.0%)
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 | 3.8978e+05 | 65536 | 2 | 1.681e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.82342053067619 (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.54 us (2.4%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 209.42 us (91.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.2%)
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 | 3.8601e+05 | 65536 | 2 | 1.698e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.00278482595549 (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.96 us (2.5%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 214.32 us (91.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (53.4%)
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 | 5.4567e+05 | 65536 | 2 | 1.201e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.74827691253408 (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 : 7.14 us (3.0%)
patch tree reduce : 2.56 us (1.1%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.68 us (0.7%)
LB compute : 211.23 us (90.1%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (54.2%)
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 | 3.9495e+05 | 65536 | 2 | 1.659e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.94815432485015 (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.38 us (2.3%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 210.94 us (91.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (59.1%)
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.0199e+05 | 65536 | 2 | 1.630e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.48110369642592 (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 : 16.86 us (7.1%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 207.16 us (87.1%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (55.2%)
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 | 3.9532e+05 | 65536 | 2 | 1.658e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.03053497670071 (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.37 us (2.2%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 12.26 us (5.0%)
LB compute : 212.24 us (87.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (65.4%)
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.8162e+05 | 65536 | 2 | 1.717e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.04801397307914 (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.68 us (2.3%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 223.82 us (91.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (60.1%)
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.8786e+05 | 65536 | 2 | 1.690e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.40646276795988 (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.72 us (2.6%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 201.24 us (91.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (53.3%)
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.8513e+05 | 65536 | 2 | 1.702e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.81193902437984 (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 : 5.31 us (2.5%)
patch tree reduce : 1.66 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 196.93 us (91.1%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.4%)
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 | 3.9727e+05 | 65536 | 2 | 1.650e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.45455364347394 (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.41 us (2.2%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 225.70 us (91.9%)
LB move op cnt : 0
LB apply : 3.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (61.5%)
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 | 4.1030e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.28948353530149 (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.58 us (2.4%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 213.45 us (91.7%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (61.5%)
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 | 4.0726e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.62792223542178 (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 : 5.40 us (2.2%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 230.40 us (91.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (59.7%)
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 | 3.9201e+05 | 65536 | 2 | 1.672e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.30936213601801 (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.80 us (2.6%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 203.18 us (91.3%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (55.7%)
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 | 3.8304e+05 | 65536 | 2 | 1.711e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.35665143240257 (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 : 5.89 us (2.5%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 215.22 us (91.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.0%)
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 | 3.9757e+05 | 65536 | 2 | 1.648e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.52020132092163 (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 : 5.44 us (2.2%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 233.03 us (92.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (61.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 | 3.9472e+05 | 65536 | 2 | 1.660e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.89897468096562 (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.31 us (2.3%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 215.25 us (91.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (63.7%)
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 | 3.8094e+05 | 65536 | 2 | 1.720e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.9008683361794 (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.64 us (2.5%)
patch tree reduce : 1.71 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 204.89 us (91.4%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.0%)
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 | 3.9929e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.89452498528753 (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.93 us (2.6%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 210.67 us (91.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (52.2%)
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 | 3.9460e+05 | 65536 | 2 | 1.661e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.87245455820951 (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.74 us (2.3%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 230.36 us (92.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.9%)
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 | 4.0017e+05 | 65536 | 2 | 1.638e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.08589990775435 (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.60 us (2.3%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 222.95 us (92.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (63.8%)
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 | 4.1155e+05 | 65536 | 2 | 1.592e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.56138957752303 (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.37 us (2.3%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 209.58 us (91.6%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (57.1%)
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.1463e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.23157524113074 (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.51 us (2.5%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 204.73 us (91.5%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (57.5%)
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.0629e+05 | 65536 | 2 | 1.613e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.4166895134158 (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.21 us (2.6%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 214.74 us (91.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (56.2%)
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.0962e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.14185955950327 (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.55 us (2.2%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 236.81 us (92.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.9%)
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.0535e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.21264248222171 (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.59 us (2.4%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 209.63 us (91.7%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (51.5%)
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.1127e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.49998499711572 (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.37 us (2.2%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 224.22 us (91.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.3%)
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.0971e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.16214502323247 (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.27 us (2.3%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 212.48 us (91.7%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (53.9%)
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 | 3.9446e+05 | 65536 | 2 | 1.661e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.84206892614654 (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.80 us (2.4%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 220.36 us (91.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.6%)
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 | 4.0331e+05 | 65536 | 2 | 1.625e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.76846567641985 (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.69 us (2.6%)
patch tree reduce : 1.69 us (0.8%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 200.99 us (91.3%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.8%)
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.1238e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.74134300575967 (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.38 us (2.3%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 213.41 us (91.9%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (52.8%)
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 | 4.0192e+05 | 65536 | 2 | 1.631e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.46634369851918 (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.51 us (2.2%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 232.08 us (91.8%)
LB move op cnt : 0
LB apply : 3.72 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.9%)
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 | 4.0665e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.49438608222606 (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.19 us (1.9%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 227.98 us (85.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (61.6%)
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.9527e+05 | 65536 | 2 | 1.658e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.01838640460485 (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 : 6.24 us (2.8%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 204.58 us (91.0%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (59.8%)
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 | 4.0811e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.81399246425346 (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.85 us (2.5%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 214.91 us (91.5%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (53.9%)
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.1203e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.66558532117038 (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.35 us (2.4%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 206.73 us (91.6%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (52.8%)
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.1990e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.37885444412356 (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.80 us (2.6%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 206.25 us (91.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (54.6%)
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 | 3.9933e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.9018950274904 (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.47 us (2.2%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 228.03 us (92.3%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.9%)
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 | 3.9857e+05 | 65536 | 2 | 1.644e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.73681610437075 (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.29 us (2.1%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 233.44 us (92.2%)
LB move op cnt : 0
LB apply : 3.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.0%)
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 | 3.9937e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.91197239160884 (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.57 us (2.5%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 204.56 us (91.5%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (55.7%)
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 | 5.3583e+05 | 65536 | 2 | 1.223e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.60674575882885 (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.97 us (2.6%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 211.62 us (91.4%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.8%)
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 | 5.5818e+05 | 65536 | 2 | 1.174e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.47055784936117 (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.73 us (2.3%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 225.00 us (92.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (56.1%)
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 | 5.0056e+05 | 65536 | 2 | 1.309e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.93139440256661 (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 : 5.90 us (2.5%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 217.02 us (91.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (53.1%)
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 | 5.6053e+05 | 65536 | 2 | 1.169e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.982618791639 (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.83 us (2.5%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 210.83 us (91.2%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (52.2%)
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 | 5.3237e+05 | 65536 | 2 | 1.231e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.85508242089982 (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.09 us (2.2%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 212.08 us (91.9%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (44.7%)
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.6579e+05 | 65536 | 2 | 1.407e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.36501560864055 (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 : 8.02 us (3.4%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 212.72 us (90.6%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.3%)
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 | 4.7476e+05 | 65536 | 2 | 1.380e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.31664114920058 (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 : 6.10 us (2.7%)
patch tree reduce : 1.58 us (0.7%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 208.76 us (91.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (54.6%)
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 | 4.9536e+05 | 65536 | 2 | 1.323e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.79978544329042 (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.63 us (2.5%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 209.05 us (91.6%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (42.9%)
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 | 5.0572e+05 | 65536 | 2 | 1.296e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.05480199467542 (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.65 us (2.4%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 219.35 us (91.5%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.6%)
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 | 5.3056e+05 | 65536 | 2 | 1.235e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.46120643829677 (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.90 us (2.2%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 242.17 us (92.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (59.9%)
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 | 5.6227e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.36195978710411 (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 : 5.47 us (2.1%)
patch tree reduce : 1.55 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 225.83 us (87.7%)
LB move op cnt : 0
LB apply : 3.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.7%)
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 | 5.6841e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.6967598217294 (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.81 us (2.4%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 227.35 us (92.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (50.9%)
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 | 5.6735e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.46659917801901 (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.50 us (2.0%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 250.55 us (92.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.1%)
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 | 5.6730e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.45642027400068 (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.49 us (2.2%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 225.97 us (92.0%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (57.2%)
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.2088e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.59126356108928 (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.57 us (2.4%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 214.96 us (91.9%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (60.8%)
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.1564e+05 | 65536 | 2 | 1.577e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.45183227161587 (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.69 us (2.6%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 202.21 us (91.3%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (64.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.1580e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.48609854996056 (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.62 us (2.5%)
patch tree reduce : 1.53 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 206.41 us (91.6%)
LB move op cnt : 0
LB apply : 2.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (53.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.2930e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.42504785793477 (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.30 us (2.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 197.25 us (91.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.5%)
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.4108e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.9884518555578 (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.61 us (2.6%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 198.22 us (91.0%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (61.2%)
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 | 4.3239e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.09615215182791 (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.26 us (2.2%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 220.77 us (92.2%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.0%)
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 | 4.3974e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.69691733506345 (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.64 us (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 205.71 us (91.1%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.0%)
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.3745e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.19845422409865 (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.44 us (2.5%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 202.36 us (91.3%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.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.3040e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.66458661110728 (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 : 5.15 us (2.2%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 213.66 us (91.9%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (56.3%)
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.3819e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.35875372070511 (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.44 us (2.4%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.32 us (0.6%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 205.80 us (91.5%)
LB move op cnt : 0
LB apply : 2.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.2%)
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 | 4.2826e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.19781810940822 (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 : 6.27 us (2.8%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 207.60 us (91.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.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.2835e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.21801763598593 (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.51 us (1.9%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 263.62 us (92.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.4%)
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 | 4.2900e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.35911449920431 (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 : 5.39 us (1.9%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 266.97 us (93.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (61.3%)
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 | 4.2282e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.01434374662696 (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.69 us (2.6%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 202.84 us (91.1%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (59.6%)
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.1805e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.97554429104908 (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.56 us (2.5%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 203.80 us (90.8%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (59.1%)
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 | 4.2285e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.02040837383942 (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.49 us (2.4%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 208.09 us (91.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.4%)
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 | 4.2153e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.73313024153896 (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.72 us (2.6%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 200.75 us (90.9%)
LB move op cnt : 0
LB apply : 3.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (57.5%)
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 | 4.2188e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.8104873664996 (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 : 5.95 us (2.6%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 211.53 us (91.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (54.4%)
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 | 4.1826e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.02251215610326 (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.68 us (2.6%)
patch tree reduce : 1.71 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 200.65 us (91.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (55.6%)
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.1940e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.26973504748813 (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.38 us (2.5%)
patch tree reduce : 1.68 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 199.12 us (91.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (58.6%)
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.4229e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.25048055032208 (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.44 us (2.3%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 212.13 us (91.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (48.9%)
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 | 5.4811e+05 | 65536 | 2 | 1.196e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.27962617138847 (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.49 us (2.3%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 217.64 us (91.6%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.8%)
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 | 5.5169e+05 | 65536 | 2 | 1.188e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.05988354636906 (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 : 6.00 us (2.8%)
patch tree reduce : 1.61 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 191.54 us (90.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (58.1%)
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 | 5.7125e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.31606909039867 (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.44 us (2.6%)
patch tree reduce : 1.69 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 187.93 us (90.7%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (54.8%)
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 | 5.6498e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.95209313404071 (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.36 us (2.5%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 194.04 us (91.0%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.4%)
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 | 5.6937e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.90599964252276 (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 : 6.02 us (1.2%)
patch tree reduce : 1.87 us (0.4%)
gen split merge : 1.17 us (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.2%)
LB compute : 488.55 us (94.0%)
LB move op cnt : 0
LB apply : 3.34 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.5%)
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 | 5.6787e+05 | 65536 | 2 | 1.154e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.57973361977113 (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.48 us (2.3%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 221.78 us (91.9%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (60.5%)
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 | 5.6941e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.91525063708288 (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.61 us (2.6%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 193.98 us (90.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (60.5%)
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 | 5.6727e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.44927173221166 (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.23 us (2.6%)
patch tree reduce : 1.69 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 181.25 us (90.6%)
LB move op cnt : 0
LB apply : 3.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (51.3%)
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 | 5.7296e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.6882359023963 (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.72 us (2.5%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 205.21 us (91.1%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.6%)
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 | 5.6972e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.9824307064506 (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.62 us (0.7%)
patch tree reduce : 1.93 us (0.2%)
gen split merge : 1.10 us (0.1%)
split / merge op : 0/0
apply split merge : 1.14 us (0.1%)
LB compute : 804.00 us (97.6%)
LB move op cnt : 0
LB apply : 3.08 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (58.2%)
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 | 4.4586e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.02722059081852 (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.42 us (2.4%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 206.53 us (91.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (56.0%)
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 | 5.2834e+05 | 65536 | 2 | 1.240e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.97678824828932 (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.70 us (2.5%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 207.88 us (91.3%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.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 | 5.6498e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.95228561223975 (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.76 us (2.8%)
patch tree reduce : 1.77 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 187.93 us (90.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.3%)
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 | 5.5809e+05 | 65536 | 2 | 1.174e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.45258614506909 (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.60 us (2.6%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 194.78 us (91.1%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.3%)
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 | 5.6464e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.87808499510652 (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.42 us (2.6%)
patch tree reduce : 1.53 us (0.7%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 190.26 us (91.1%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.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 | 5.4891e+05 | 65536 | 2 | 1.194e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.45515595787565 (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.99 us (2.9%)
patch tree reduce : 1.68 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 187.96 us (90.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (56.4%)
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 | 5.0685e+05 | 65536 | 2 | 1.293e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.30015881222886 (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.23 us (2.5%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 187.15 us (90.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.2%)
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 | 4.4799e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.49137225925341 (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.19 us (2.2%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 220.71 us (92.0%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (59.2%)
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 | 4.3996e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.7436470015015 (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.65 us (2.3%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 224.48 us (92.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (53.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 | 4.5144e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.24276446217237 (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.19 us (2.0%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 236.45 us (92.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.6%)
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 | 5.1496e+05 | 65536 | 2 | 1.273e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.06603202326501 (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.44 us (2.1%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 239.48 us (92.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.2%)
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 | 4.2702e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.92734691957405 (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.71 us (2.5%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 207.02 us (91.5%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (57.7%)
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.4379e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.57733382690395 (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.35 us (2.4%)
patch tree reduce : 1.48 us (0.7%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 207.37 us (91.6%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.9%)
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.3273e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.17189765750179 (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.51 us (2.4%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 210.47 us (91.5%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (53.5%)
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.6593e+05 | 65536 | 2 | 1.407e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.39639006696737 (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.18 us (2.1%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 226.66 us (92.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.1%)
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 | 5.6153e+05 | 65536 | 2 | 1.167e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.19965335671243 (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.82 us (2.5%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 212.88 us (91.6%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (55.1%)
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 | 5.4752e+05 | 65536 | 2 | 1.197e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.15264730318528 (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.56 us (2.1%)
patch tree reduce : 1.56 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 240.45 us (92.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (58.4%)
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.0060e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.17856223241319 (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.45 us (2.4%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 205.71 us (91.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (58.5%)
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.3081e+05 | 65536 | 2 | 1.981e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.9907177111742 (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 : 6.61 us (2.7%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 225.83 us (91.0%)
LB move op cnt : 0
LB apply : 3.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (58.2%)
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 | 3.7871e+05 | 65536 | 2 | 1.730e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.4156654472908 (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 : 6.42 us (2.7%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 214.97 us (90.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (52.9%)
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 | 3.9868e+05 | 65536 | 2 | 1.644e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.76114536053399 (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 : 6.00 us (2.6%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 209.88 us (90.9%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (50.3%)
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.0356e+05 | 65536 | 2 | 1.624e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.82262471423341 (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 : 6.26 us (2.7%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 208.75 us (91.0%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (60.4%)
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 | 5.4256e+05 | 65536 | 2 | 1.208e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.07114517038933 (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.85 us (2.3%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 236.01 us (91.8%)
LB move op cnt : 0
LB apply : 3.72 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (56.9%)
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 | 5.0165e+05 | 65536 | 2 | 1.306e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.16910893881959 (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.62 us (2.2%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 230.71 us (91.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.4%)
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 | 5.4997e+05 | 65536 | 2 | 1.192e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.68475140843967 (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.95 us (2.2%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 247.83 us (92.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (58.8%)
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 | 5.7962e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.13649241734777 (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 : 6.45 us (2.5%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 231.30 us (91.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.6%)
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 | 5.8113e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.46566862967087 (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.60 us (2.4%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 209.61 us (90.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (50.9%)
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 | 5.6272e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.45876854287386 (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.67 us (2.7%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 189.07 us (90.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.6%)
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 | 5.6476e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.90266752840085 (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.34 us (2.5%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 192.12 us (90.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.1%)
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 | 5.5998e+05 | 65536 | 2 | 1.170e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.8640397676196 (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.21 us (2.5%)
patch tree reduce : 1.66 us (0.8%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 190.65 us (91.2%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.6%)
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 | 5.5123e+05 | 65536 | 2 | 1.189e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.9585773742414 (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.55 us (2.5%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 203.07 us (91.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (56.1%)
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 | 5.6639e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.25816070847267 (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.55 us (2.3%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 217.78 us (91.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.7%)
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 | 5.4827e+05 | 65536 | 2 | 1.195e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.31537614771214 (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.64 us (2.7%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 186.28 us (90.6%)
LB move op cnt : 0
LB apply : 2.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.1%)
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 | 5.5278e+05 | 65536 | 2 | 1.186e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.2966402876212 (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.43 us (2.6%)
patch tree reduce : 1.83 us (0.9%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 191.36 us (90.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (57.6%)
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 | 5.0395e+05 | 65536 | 2 | 1.300e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.66894127592943 (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.61 us (2.7%)
patch tree reduce : 1.99 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 187.71 us (90.6%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (56.2%)
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 | 5.5762e+05 | 65536 | 2 | 1.175e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.34963126569001 (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.75 us (2.8%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 188.25 us (90.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (59.5%)
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 | 5.4137e+05 | 65536 | 2 | 1.211e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.81231273741639 (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.53 us (2.7%)
patch tree reduce : 1.76 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 186.38 us (90.6%)
LB move op cnt : 0
LB apply : 3.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (60.0%)
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 | 5.4148e+05 | 65536 | 2 | 1.210e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.8377188237173 (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.81 us (2.3%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 230.73 us (92.0%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.7%)
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 | 5.3713e+05 | 65536 | 2 | 1.220e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.89121445934921 (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.49 us (2.2%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 229.27 us (92.1%)
LB move op cnt : 0
LB apply : 3.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (60.7%)
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 | 5.5366e+05 | 65536 | 2 | 1.184e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.48711363750438 (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.44 us (2.5%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 197.56 us (91.1%)
LB move op cnt : 0
LB apply : 2.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (55.1%)
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 | 5.5509e+05 | 65536 | 2 | 1.181e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.79860693626102 (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.68 us (2.5%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 206.19 us (91.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (59.1%)
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.4266e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.33152402624825 (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.98 us (2.6%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 213.27 us (91.7%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.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.3080e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.75184855335058 (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.18 us (2.2%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 216.07 us (92.0%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.8%)
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 | 4.2753e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.03943858681937 (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.84 us (2.4%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 219.18 us (91.8%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.6%)
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.1845e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.06330350274152 (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.66 us (2.3%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 222.26 us (92.1%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (76.2%)
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.3621e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.92906713238538 (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.71 us (2.5%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 208.54 us (91.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.0%)
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.4427e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.68311304451639 (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 : 5.58 us (2.5%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 201.39 us (91.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (50.5%)
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.3478e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.61793928172398 (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.76 us (2.5%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 207.92 us (91.5%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (53.7%)
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.5123e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.19737906179625 (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.66 us (2.2%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 243.05 us (92.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (61.6%)
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.3518e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.70386783745494 (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.39 us (2.5%)
patch tree reduce : 1.57 us (0.7%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 198.08 us (91.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (54.1%)
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.3985e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.72059770673931 (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.50 us (2.5%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 202.22 us (91.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.8%)
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.3909e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.55447727437542 (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 : 6.03 us (2.2%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 248.16 us (92.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.3%)
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 | 4.4118e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.00893095612429 (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.56 us (2.5%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 204.85 us (91.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (56.8%)
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.3199e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.0097418133862 (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 : 16.98 us (6.9%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 214.95 us (87.3%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.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.2934e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.4321178016351 (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.38 us (2.2%)
patch tree reduce : 1.57 us (0.7%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.39 us (0.6%)
LB compute : 221.89 us (91.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.9%)
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.3183e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.97431232207597 (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.38 us (2.2%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 229.74 us (92.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (56.9%)
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.2982e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.53790825408899 (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.67 us (2.5%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 206.79 us (91.5%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (67.1%)
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.0186e+05 | 65536 | 2 | 1.631e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.45276800153107 (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.41 us (2.3%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 219.67 us (92.0%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.9%)
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.1115e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.47473304806466 (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.44 us (2.4%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 204.84 us (91.5%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.7%)
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 | 4.3638e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.9650957725025 (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.59 us (2.2%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 233.74 us (92.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (58.9%)
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.3708e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.11725244688763 (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.57 us (2.5%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 202.87 us (91.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (51.5%)
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.2578e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.65877288071661 (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.70 us (2.5%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 204.52 us (91.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (60.3%)
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.2147e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.72140521291183 (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.50 us (2.3%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 221.81 us (92.1%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.1%)
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 | 4.1476e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.26039236144194 (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.57 us (2.4%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 208.03 us (91.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.1%)
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 | 4.2438e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.3535510895745 (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 : 5.97 us (2.5%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 215.89 us (91.6%)
LB move op cnt : 0
LB apply : 2.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (59.4%)
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.2445e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.3680409225981 (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.50 us (2.4%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 207.09 us (91.6%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.3%)
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 | 3.9898e+05 | 65536 | 2 | 1.643e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.825888125241 (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.43 us (2.0%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 246.20 us (92.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (62.1%)
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 | 3.9547e+05 | 65536 | 2 | 1.657e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.06213049784026 (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.50 us (2.2%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 229.24 us (92.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (58.9%)
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 | 3.9656e+05 | 65536 | 2 | 1.653e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.2992982872712 (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.61 us (2.4%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 215.42 us (91.8%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (53.2%)
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 | 3.9630e+05 | 65536 | 2 | 1.654e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.24211707336458 (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.36 us (2.3%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 214.97 us (91.7%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (58.0%)
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 | 3.8243e+05 | 65536 | 2 | 1.714e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.22504096982752 (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.84 us (2.3%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 229.97 us (92.1%)
LB move op cnt : 0
LB apply : 3.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (61.1%)
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 | 3.9103e+05 | 65536 | 2 | 1.676e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.09541118476928 (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 : 6.55 us (0.1%)
patch tree reduce : 2.25 us (0.0%)
gen split merge : 1.31 us (0.0%)
split / merge op : 0/0
apply split merge : 1.50 us (0.0%)
LB compute : 4.63 ms (99.5%)
LB move op cnt : 0
LB apply : 4.34 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (61.9%)
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 | 3.9172e+05 | 65536 | 2 | 1.673e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.24637585612545 (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.86 us (2.4%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 227.82 us (91.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (58.9%)
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 | 5.3295e+05 | 65536 | 2 | 1.230e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.98032939061886 (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.54 us (2.5%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 200.56 us (91.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.8%)
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 | 5.8025e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.27390298329541 (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.48 us (2.5%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 195.42 us (90.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.1%)
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 | 5.7908e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.02027555246991 (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.80 us (2.6%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 203.82 us (91.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (56.6%)
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 | 5.5924e+05 | 65536 | 2 | 1.172e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.70224070607226 (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 : 5.72 us (2.7%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 193.26 us (90.9%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (56.4%)
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 | 5.6832e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.67903073590435 (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.68 us (2.4%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 213.57 us (91.4%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (59.1%)
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 | 5.6664e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.31325033964357 (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.64 us (2.7%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 188.94 us (90.6%)
LB move op cnt : 0
LB apply : 3.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (59.4%)
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 | 5.7055e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.16362531372376 (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.53 us (2.1%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 241.32 us (92.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (60.7%)
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 | 5.7189e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.39396860023457 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 761.688163301 (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.88 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.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 : 892.00 ns (0.4%)
patch tree reduce : 1.48 us (0.6%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.3%)
LB compute : 237.61 us (96.0%)
LB move op cnt : 0
LB apply : 3.01 us (1.2%)
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 : 761.8203030210001 (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.12 us (3.0%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 243.28 us (91.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (56.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 | 5.5553e+05 | 65536 | 2 | 1.180e-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 : 5.70 us (2.4%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 221.50 us (91.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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 | 5.6137e+05 | 65536 | 2 | 1.167e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.1662887264602 (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 (2.4%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 210.00 us (91.4%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (55.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 | 5.6369e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.67022165330157 (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.38 us (2.2%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 224.93 us (92.1%)
LB move op cnt : 0
LB apply : 3.49 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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 | 5.5887e+05 | 65536 | 2 | 1.173e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.62252586142336 (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.70 us (2.7%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 193.97 us (90.8%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.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 | 5.5990e+05 | 65536 | 2 | 1.170e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.84657572400612 (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.28 us (2.3%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 206.71 us (91.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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 | 5.6023e+05 | 65536 | 2 | 1.170e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.91858611479992 (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.36 us (2.6%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 190.59 us (90.8%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (58.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 | 5.5972e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.80590842190095 (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.20 us (2.5%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 189.37 us (90.6%)
LB move op cnt : 0
LB apply : 3.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.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 | 5.6157e+05 | 65536 | 2 | 1.167e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.2099543043897 (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.38 us (2.6%)
patch tree reduce : 1.86 us (0.9%)
gen split merge : 991.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 187.49 us (90.8%)
LB move op cnt : 0
LB apply : 3.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.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 | 5.5970e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.80122102832155 (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.83 us (2.8%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 189.14 us (90.2%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 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 | 5.2612e+05 | 65536 | 2 | 1.246e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.49364768037671 (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.31 us (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.5%)
LB compute : 188.80 us (90.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.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 | 5.4593e+05 | 65536 | 2 | 1.200e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.80604001560289 (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.30 us (2.6%)
patch tree reduce : 1.77 us (0.9%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 186.78 us (90.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.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 | 5.4287e+05 | 65536 | 2 | 1.207e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.14014528049287 (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.23 us (2.5%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 189.73 us (90.9%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.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 | 5.3145e+05 | 65536 | 2 | 1.233e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.65462482361846 (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 : 5.41 us (2.2%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 222.44 us (92.0%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 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 | 5.4985e+05 | 65536 | 2 | 1.192e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.3047291747469 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 763.540056935 (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.92 us (2.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.19 us (0.4%)
LB compute : 251.55 us (92.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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 | 5.5686e+05 | 65536 | 2 | 1.177e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.18375767180711 (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.36 us (2.5%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 195.75 us (90.9%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (54.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 | 5.5847e+05 | 65536 | 2 | 1.173e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.53491012192144 (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.20 us (2.3%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 201.39 us (91.0%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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.1347e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.97974871185114 (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.28 us (2.4%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 199.96 us (91.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (54.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 | 5.2957e+05 | 65536 | 2 | 1.238e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.24468389073697 (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.65 us (2.7%)
patch tree reduce : 2.18 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 187.45 us (90.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.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.7912e+05 | 65536 | 2 | 1.368e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.26633045616974 (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 : 5.74 us (2.4%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 221.82 us (91.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (58.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 | 5.7204e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.48695247854468 (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 : 5.24 us (2.6%)
patch tree reduce : 2.40 us (1.2%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 182.08 us (90.5%)
LB move op cnt : 0
LB apply : 3.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (55.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 | 5.7312e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.72352492751729 (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.36 us (2.7%)
patch tree reduce : 1.82 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 181.10 us (90.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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 | 5.7674e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.50942563899368 (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.47 us (2.4%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 208.84 us (91.5%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.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 | 5.7540e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.21992253389284 (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 : 6.01 us (2.9%)
patch tree reduce : 1.69 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 188.01 us (90.4%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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 | 5.8157e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.56199342939485 (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.56 us (2.4%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 208.76 us (91.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.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 | 5.2858e+05 | 65536 | 2 | 1.240e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.02985948546066 (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.17 us (2.1%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 225.05 us (92.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (57.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 | 5.7018e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.08219899385485 (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.45 us (2.6%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 188.65 us (90.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.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 | 5.7783e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.08613728798886 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 765.1751987150001 (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.86 us (2.9%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 243.60 us (91.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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 | 5.7721e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.61322678966374 (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 : 5.67 us (2.7%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 186.00 us (90.2%)
LB move op cnt : 0
LB apply : 3.42 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.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 | 5.7705e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.57717247340372 (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.21 us (2.5%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 188.55 us (90.7%)
LB move op cnt : 0
LB apply : 3.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.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 | 5.7489e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.10723912673888 (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.52 us (1.3%)
patch tree reduce : 2.29 us (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 401.48 us (95.2%)
LB move op cnt : 0
LB apply : 3.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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 | 5.7419e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.95591160645965 (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.82 us (2.7%)
patch tree reduce : 2.27 us (1.1%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 191.77 us (90.4%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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 | 5.7081e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.22068903327445 (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.61 us (2.6%)
patch tree reduce : 2.31 us (1.1%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 192.90 us (90.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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 | 5.6775e+05 | 65536 | 2 | 1.154e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.55484208718009 (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.60 us (2.7%)
patch tree reduce : 2.20 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 189.56 us (90.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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 | 5.6226e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.36025215159421 (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.03 us (2.4%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.5%)
LB compute : 188.39 us (90.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (55.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 | 5.6869e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.75817993231138 (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 : 5.58 us (1.9%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 276.07 us (93.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.7280e+05 | 65536 | 2 | 1.386e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.8902549694978 (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.12 us (2.0%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 232.69 us (92.2%)
LB move op cnt : 0
LB apply : 3.69 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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.2388e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.24495703859287 (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 : 5.20 us (2.2%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 221.44 us (92.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 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 | 5.6955e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.94589596485629 (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.60 us (2.5%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 205.57 us (91.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (58.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 | 5.8379e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.04565961887059 (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 (2.7%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.14 us (0.6%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 187.30 us (90.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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 | 5.6918e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.91599030904106 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 766.787229051 (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.10 us (2.4%)
patch tree reduce : 2.07 us (0.7%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 270.68 us (92.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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 | 5.5663e+05 | 65536 | 2 | 1.177e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.13335031125524 (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.57 us (2.4%)
patch tree reduce : 2.44 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 209.64 us (91.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 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 | 5.7101e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.26414461364219 (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 : 5.19 us (2.3%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 201.97 us (91.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.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 | 5.5822e+05 | 65536 | 2 | 1.174e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.48054198517107 (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.40 us (2.6%)
patch tree reduce : 1.78 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 188.23 us (90.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (53.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 | 5.5331e+05 | 65536 | 2 | 1.184e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.41264069349445 (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.24 us (3.0%)
patch tree reduce : 1.61 us (0.8%)
gen split merge : 992.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 187.32 us (90.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.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 | 5.7078e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.21255761229511 (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.56 us (2.5%)
patch tree reduce : 1.69 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 206.13 us (91.4%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (55.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 | 5.6119e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.12653510682351 (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.36 us (2.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.39 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 203.80 us (91.3%)
LB move op cnt : 0
LB apply : 2.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (47.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 | 5.5579e+05 | 65536 | 2 | 1.179e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.95183600533852 (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.26 us (2.5%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 187.56 us (90.7%)
LB move op cnt : 0
LB apply : 3.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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 | 5.6171e+05 | 65536 | 2 | 1.167e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.24040425743632 (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.84 us (2.8%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 187.18 us (90.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.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 | 5.6442e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.83010301702802 (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.62 us (0.6%)
patch tree reduce : 2.19 us (0.2%)
gen split merge : 1.13 us (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.1%)
LB compute : 885.09 us (97.7%)
LB move op cnt : 0
LB apply : 3.34 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.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 | 5.4886e+05 | 65536 | 2 | 1.194e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.44397319928149 (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.24 us (2.5%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 189.71 us (90.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (57.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 | 5.7226e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.53642852919786 (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.46 us (2.6%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 186.83 us (90.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.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 | 5.7412e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.94118284058304 (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.44 us (2.6%)
patch tree reduce : 1.79 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 185.99 us (90.5%)
LB move op cnt : 0
LB apply : 3.52 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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 | 5.6289e+05 | 65536 | 2 | 1.164e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.06619841488028 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 768.361600477 (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.19 us (2.4%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 271.70 us (92.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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 | 5.7223e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.52807522645658 (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.57 us (2.2%)
patch tree reduce : 2.33 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 227.89 us (91.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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 | 5.8638e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.60938234211372 (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.76 us (2.1%)
patch tree reduce : 2.37 us (0.9%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 247.35 us (92.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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.8438e+05 | 65536 | 2 | 1.353e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.41035518084725 (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.86 us (2.8%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 191.14 us (90.8%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (52.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 | 5.8247e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.75772784977703 (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.81 us (2.8%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 187.51 us (90.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (57.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.3752e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.2136783862035 (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.34 us (2.7%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 180.91 us (90.6%)
LB move op cnt : 0
LB apply : 3.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 5.9117e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.65091553681592 (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 : 5.67 us (2.7%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.14 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 186.60 us (90.5%)
LB move op cnt : 0
LB apply : 3.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (54.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.2683e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.8862325727895 (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.27 us (2.3%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 209.18 us (91.5%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.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 | 5.7604e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.35837809726922 (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.62 us (2.4%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 210.92 us (91.6%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.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.8045e+05 | 65536 | 2 | 1.364e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.55529200580543 (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.09 us (2.2%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 208.59 us (91.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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.8845e+05 | 65536 | 2 | 1.342e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.29619324471759 (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 : 5.36 us (2.3%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 215.07 us (91.8%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (55.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 | 5.7982e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.18128740433322 (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.60 us (2.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 209.64 us (91.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (41.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 | 5.7859e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.91244327745807 (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.35 us (2.2%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 221.80 us (92.1%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.8290e+05 | 65536 | 2 | 1.357e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.25745327759402 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 770.057307923 (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.01 us (2.5%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 255.86 us (92.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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.5686e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.42178390786111 (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.23 us (2.4%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 202.54 us (91.3%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.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.9279e+05 | 65536 | 2 | 1.330e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.24131795935503 (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.28 us (2.4%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 198.75 us (91.2%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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 | 5.7011e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.06748227556639 (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 : 4.98 us (2.0%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 236.09 us (92.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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.1932e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.25292440603477 (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.81 us (2.4%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 226.73 us (92.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.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 | 5.4962e+05 | 65536 | 2 | 1.192e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.60762807790387 (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.20 us (2.1%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 233.61 us (92.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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.4468e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.77045807470593 (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.33 us (2.6%)
patch tree reduce : 2.49 us (1.2%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 186.40 us (90.5%)
LB move op cnt : 0
LB apply : 3.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (54.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 | 5.5988e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.84049351835016 (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.32 us (2.6%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.14 us (0.6%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 186.11 us (90.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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 | 5.6868e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.756658219931 (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.13 us (2.5%)
patch tree reduce : 2.35 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 188.67 us (90.7%)
LB move op cnt : 0
LB apply : 3.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.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 | 5.6048e+05 | 65536 | 2 | 1.169e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.97246567448373 (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.21 us (2.3%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 209.86 us (91.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.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 | 5.5995e+05 | 65536 | 2 | 1.170e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.85655964383001 (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.51 us (2.3%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 215.50 us (91.7%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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 | 5.5743e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.30813450413287 (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 : 5.44 us (2.6%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 187.52 us (90.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.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 | 5.6496e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.94751852304991 (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.41 us (2.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 211.52 us (91.5%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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 | 5.6600e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.48651686259718 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 771.7480995520001 (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 : 6.94 us (2.9%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 215.62 us (90.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 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 | 5.5914e+05 | 65536 | 2 | 1.172e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.67982307429348 (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.46 us (2.3%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 214.76 us (91.6%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.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 | 5.7192e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.46174965270053 (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 : 5.49 us (2.5%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 201.71 us (91.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (54.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.0869e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.93850076261805 (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 : 5.28 us (2.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 201.69 us (91.4%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.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.0175e+05 | 65536 | 2 | 1.631e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.42972422674164 (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 : 5.37 us (2.2%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 230.16 us (92.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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.9692e+05 | 65536 | 2 | 1.651e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.37779523350649 (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.33 us (2.4%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 205.79 us (91.3%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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 | 3.9521e+05 | 65536 | 2 | 1.658e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.00579712374582 (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 (2.7%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 190.85 us (90.7%)
LB move op cnt : 0
LB apply : 2.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.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.0137e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.34636222231877 (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.63 us (2.6%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 193.42 us (90.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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.9041e+05 | 65536 | 2 | 1.679e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.96214409123877 (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.52 us (2.3%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 219.43 us (91.4%)
LB move op cnt : 0
LB apply : 3.51 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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 | 3.9324e+05 | 65536 | 2 | 1.667e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.57787311946335 (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 : 6.36 us (3.0%)
patch tree reduce : 2.68 us (1.3%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 192.40 us (89.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.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.9358e+05 | 65536 | 2 | 1.665e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.65126118609605 (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.64 us (2.3%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 221.19 us (91.8%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (51.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.9243e+05 | 65536 | 2 | 1.670e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.40042540006402 (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.14 us (2.1%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 222.44 us (92.3%)
LB move op cnt : 0
LB apply : 2.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.9451e+05 | 65536 | 2 | 1.661e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.85268159532272 (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.49 us (2.2%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 233.75 us (92.3%)
LB move op cnt : 0
LB apply : 3.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.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.9670e+05 | 65536 | 2 | 1.652e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.607810095575154 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 773.8568672050001 (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 : 8.27 us (2.6%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 297.69 us (92.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 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.9117e+05 | 65536 | 2 | 1.675e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.12705440464404 (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.57 us (2.2%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 233.17 us (92.1%)
LB move op cnt : 0
LB apply : 3.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.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.9304e+05 | 65536 | 2 | 1.667e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.53301543220032 (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.81 us (2.4%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 224.63 us (91.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (52.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.8467e+05 | 65536 | 2 | 1.704e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.71170628041978 (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 : 5.45 us (2.3%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 215.05 us (91.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (55.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.9351e+05 | 65536 | 2 | 1.665e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.63645256341916 (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 : 5.34 us (2.2%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 219.35 us (92.0%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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 | 3.9176e+05 | 65536 | 2 | 1.673e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.25527453438436 (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.38 us (2.4%)
patch tree reduce : 2.37 us (1.0%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 208.55 us (91.3%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (55.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.8578e+05 | 65536 | 2 | 1.699e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.95286417064789 (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.27 us (2.3%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 207.70 us (91.5%)
LB move op cnt : 0
LB apply : 2.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.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.8777e+05 | 65536 | 2 | 1.690e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.38649391165312 (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.35 us (2.2%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 222.67 us (92.0%)
LB move op cnt : 0
LB apply : 2.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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.9717e+05 | 65536 | 2 | 1.650e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.43125949024942 (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.59 us (2.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 208.96 us (91.3%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (53.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.9138e+05 | 65536 | 2 | 1.674e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.17330610815384 (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 : 6.40 us (2.6%)
patch tree reduce : 2.48 us (1.0%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 209.11 us (86.2%)
LB move op cnt : 0
LB apply : 15.22 us (6.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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.8826e+05 | 65536 | 2 | 1.688e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.4934721911437 (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.25 us (2.4%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 240.40 us (91.7%)
LB move op cnt : 0
LB apply : 3.77 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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.7922e+05 | 65536 | 2 | 1.728e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.52515637357146 (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.69 us (2.1%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 248.32 us (92.7%)
LB move op cnt : 0
LB apply : 3.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.0846e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.89020857851989 (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.63 us (2.4%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 215.92 us (91.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.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.8245e+05 | 65536 | 2 | 1.714e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.68308836365305 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 776.116639551 (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.43 us (2.7%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 255.45 us (92.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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 | 5.2975e+05 | 65536 | 2 | 1.237e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.28528166535543 (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.47 us (2.4%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 204.95 us (91.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.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 | 5.3787e+05 | 65536 | 2 | 1.218e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.05117170064123 (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.65 us (2.7%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 188.57 us (90.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.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 | 5.0896e+05 | 65536 | 2 | 1.288e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.75998613862282 (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.75 us (2.8%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 187.49 us (90.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (57.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.1840e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.05340878990508 (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.45 us (2.3%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 220.97 us (92.0%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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 | 4.0614e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.38362558719763 (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.62 us (2.6%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 200.72 us (91.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.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.1462e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.23058529602166 (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.45 us (2.0%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 246.45 us (92.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 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.0486e+05 | 65536 | 2 | 1.619e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.10617038783329 (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.12 us (2.2%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 211.29 us (91.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.1233e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.73253176684821 (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.26 us (2.4%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 202.61 us (91.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.0994e+05 | 65536 | 2 | 1.599e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.2117023573995 (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.65 us (2.5%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 203.92 us (91.2%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.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.1357e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.00207290669915 (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.50 us (2.3%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 216.56 us (91.6%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.2551e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.60007669380856 (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.69 us (2.6%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 198.33 us (90.9%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (52.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.2672e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.86209570502456 (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.52 us (2.4%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 209.04 us (91.5%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.1596e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.210958030006786 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 778.1413550220001 (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 : 7.12 us (2.5%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 258.58 us (92.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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.1935e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.25912315757382 (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.84 us (2.3%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 230.31 us (92.2%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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 | 5.1406e+05 | 65536 | 2 | 1.275e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.86967513052593 (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.45 us (2.7%)
patch tree reduce : 1.93 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.6%)
LB compute : 178.71 us (89.9%)
LB move op cnt : 0
LB apply : 3.48 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.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 | 5.4618e+05 | 65536 | 2 | 1.200e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.86021634962643 (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.30 us (2.5%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 192.00 us (90.7%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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 | 5.4921e+05 | 65536 | 2 | 1.193e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.51915621779227 (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.79 us (2.4%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 222.47 us (91.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 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.3557e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.78962047767155 (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.16 us (2.4%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 199.79 us (91.2%)
LB move op cnt : 0
LB apply : 3.51 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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 | 5.3429e+05 | 65536 | 2 | 1.227e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.2728872328555 (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.34 us (2.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 189.03 us (85.7%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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 | 5.4876e+05 | 65536 | 2 | 1.194e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.420491775244 (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.54 us (2.2%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 230.27 us (92.0%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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 | 5.4983e+05 | 65536 | 2 | 1.192e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.65327184072797 (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 : 5.43 us (2.6%)
patch tree reduce : 2.21 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 189.34 us (90.6%)
LB move op cnt : 0
LB apply : 3.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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 | 5.3340e+05 | 65536 | 2 | 1.229e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.07953070446447 (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 : 4.95 us (2.2%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 205.12 us (91.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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 | 5.3295e+05 | 65536 | 2 | 1.230e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.98084057763 (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.59 us (2.6%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 192.66 us (90.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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.7547e+05 | 65536 | 2 | 1.378e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.47178667511842 (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.66 us (2.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 198.45 us (91.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.6039e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.19105912596477 (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.27 us (2.4%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 201.61 us (91.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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 | 5.1945e+05 | 65536 | 2 | 1.262e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.19631125136432 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 779.899758238 (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 : 7.19 us (2.5%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 267.31 us (92.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 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 | 5.2646e+05 | 65536 | 2 | 1.245e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.56752547037718 (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.54 us (2.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 209.33 us (91.2%)
LB move op cnt : 0
LB apply : 3.51 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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 | 5.3776e+05 | 65536 | 2 | 1.219e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.02695163517531 (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.77 us (2.7%)
patch tree reduce : 1.83 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 190.06 us (90.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.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 | 5.3696e+05 | 65536 | 2 | 1.221e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.8532938275165 (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.33 us (2.4%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 206.98 us (91.5%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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 | 5.4372e+05 | 65536 | 2 | 1.205e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.32432101293107 (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.38 us (2.6%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 186.15 us (90.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (51.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 | 5.4945e+05 | 65536 | 2 | 1.193e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.57189380208436 (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.49 us (2.3%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 216.38 us (91.7%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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.9877e+05 | 65536 | 2 | 1.314e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.54181029085953 (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.65 us (2.6%)
patch tree reduce : 2.39 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 196.62 us (90.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 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 | 5.5084e+05 | 65536 | 2 | 1.190e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.87333758315073 (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.70 us (2.3%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 232.16 us (92.0%)
LB move op cnt : 0
LB apply : 3.55 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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 | 5.3940e+05 | 65536 | 2 | 1.215e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.38484636293182 (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.71 us (2.2%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 234.97 us (92.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 | 5.4198e+05 | 65536 | 2 | 1.209e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.94687769765518 (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.42 us (2.4%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 208.56 us (91.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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 | 5.3746e+05 | 65536 | 2 | 1.219e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.9623124128017 (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.48 us (2.7%)
patch tree reduce : 2.02 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 183.83 us (90.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.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 | 5.4623e+05 | 65536 | 2 | 1.200e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.87022609843353 (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.34 us (2.5%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 191.28 us (90.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (71.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.6449e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.08321619153844 (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.17 us (2.4%)
patch tree reduce : 1.55 us (0.7%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 196.76 us (91.2%)
LB move op cnt : 0
LB apply : 3.53 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.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 | 5.3794e+05 | 65536 | 2 | 1.218e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.69521482858403 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 781.565168231 (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.23 us (3.1%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 213.18 us (90.7%)
LB move op cnt : 0
LB apply : 3.53 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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 | 5.4901e+05 | 65536 | 2 | 1.194e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.47530614143992 (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.52 us (2.6%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 192.09 us (90.8%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.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 | 5.4687e+05 | 65536 | 2 | 1.198e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.01111382552466 (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.54 us (2.6%)
patch tree reduce : 2.31 us (1.1%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 191.24 us (90.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.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.2183e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.79903390825898 (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.46 us (2.4%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 208.30 us (91.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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.1374e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.0392721236243 (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.88 us (2.6%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 206.79 us (91.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (56.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.1264e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.79798751547726 (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 : 5.46 us (2.5%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 198.88 us (91.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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.1533e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.38453608416904 (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.47 us (2.5%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 200.59 us (91.0%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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.0453e+05 | 65536 | 2 | 1.620e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.03447569533465 (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.22 us (2.3%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 205.57 us (91.5%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (52.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.2825e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.19503562927574 (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.35 us (2.3%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 214.13 us (91.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.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.3421e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.49265175088863 (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.47 us (2.5%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 202.48 us (91.0%)
LB move op cnt : 0
LB apply : 2.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.2908e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.37619807548306 (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.58 us (2.4%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 208.35 us (91.5%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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.6037e+05 | 65536 | 2 | 1.819e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.42464932502496 (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.74 us (2.2%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 241.52 us (91.7%)
LB move op cnt : 0
LB apply : 3.90 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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.1955e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.30189623129633 (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.40 us (2.3%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 209.38 us (91.0%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (55.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.2107e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.90146370213052 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 783.6058666790001 (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 : 7.70 us (2.6%)
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.10 us (0.4%)
LB compute : 273.33 us (92.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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.8875e+05 | 65536 | 2 | 1.341e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.3618334354995 (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.82 us (2.8%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 189.80 us (90.6%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (55.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 | 5.5737e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.29453676168805 (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.57 us (2.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 210.68 us (91.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (58.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.6414e+05 | 65536 | 2 | 1.412e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.00674923678042 (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.58 us (2.7%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 185.80 us (90.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (55.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.4910e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.7341147917913 (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.22 us (2.3%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 206.04 us (91.6%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (53.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 | 5.6374e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.68094463805012 (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.77 us (2.6%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 205.20 us (91.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (59.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 | 5.2852e+05 | 65536 | 2 | 1.240e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.01649369496802 (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.51 us (2.3%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 215.91 us (91.7%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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 | 5.8212e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.68218940579536 (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.42 us (2.4%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 208.09 us (91.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.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 | 5.8472e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.2463850469914 (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.77 us (2.5%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 210.35 us (91.5%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.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 | 5.8568e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.45590419333267 (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.37 us (2.4%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 202.52 us (91.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (56.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 | 5.7961e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.13489452179812 (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.80 us (2.1%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 250.00 us (92.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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 | 5.7907e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.0176372703145 (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.66 us (2.4%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 211.77 us (91.4%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.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 | 5.6641e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.26310887759975 (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.18 us (2.3%)
patch tree reduce : 2.38 us (1.1%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 201.99 us (91.2%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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 | 5.6821e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.78545733523282 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 785.2512123460001 (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.36 us (3.0%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 225.75 us (91.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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.8067e+05 | 65536 | 2 | 1.363e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.60451988702222 (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.80 us (2.5%)
patch tree reduce : 2.43 us (1.1%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 207.74 us (91.2%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (52.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 | 5.1771e+05 | 65536 | 2 | 1.266e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.66472549893908 (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.49 us (2.0%)
patch tree reduce : 14.10 us (5.3%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 236.72 us (88.2%)
LB move op cnt : 0
LB apply : 3.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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 | 5.8003e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.22600402128698 (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.55 us (2.6%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 190.72 us (90.7%)
LB move op cnt : 0
LB apply : 2.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (56.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 | 5.8103e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.44304094885476 (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.62 us (2.7%)
patch tree reduce : 2.24 us (1.1%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 185.63 us (90.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.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 | 5.7592e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.33177819759511 (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.29 us (2.5%)
patch tree reduce : 2.51 us (1.2%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 190.81 us (90.8%)
LB move op cnt : 0
LB apply : 2.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (55.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 | 5.7982e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.18072810288298 (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.62 us (2.7%)
patch tree reduce : 2.21 us (1.1%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 186.58 us (90.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.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 | 5.7867e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.93063761718273 (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.91 us (2.7%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 194.86 us (90.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (54.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 | 5.7627e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.40910517532058 (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.57 us (2.2%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 237.06 us (92.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.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 | 5.7393e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.89961949208178 (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.59 us (2.6%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 193.61 us (91.0%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.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 | 5.7967e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.1472850854197 (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.65 us (2.6%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 195.54 us (91.0%)
LB move op cnt : 0
LB apply : 2.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.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 | 5.7671e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.50373762747427 (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.79 us (2.4%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 223.54 us (92.0%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 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 | 5.7713e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.59534303995248 (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.37 us (2.6%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 191.11 us (90.9%)
LB move op cnt : 0
LB apply : 2.85 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (54.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 | 5.7637e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.8875955493127 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 786.83386584 (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.40 us (3.1%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 217.50 us (91.0%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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 | 5.4160e+05 | 65536 | 2 | 1.210e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.86232136226805 (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.43 us (2.3%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 218.53 us (92.0%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 | 5.8673e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.6846374091703 (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 : 5.62 us (2.5%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 204.26 us (91.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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 | 5.3625e+05 | 65536 | 2 | 1.222e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.69925595267536 (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.44 us (2.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 191.82 us (91.0%)
LB move op cnt : 0
LB apply : 2.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.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 | 5.7676e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.51502027361751 (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.28 us (2.5%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 188.60 us (90.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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 | 5.6740e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.47887975050021 (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.50 us (2.6%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 188.37 us (90.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 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 | 5.5562e+05 | 65536 | 2 | 1.180e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.91447506054331 (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.35 us (2.4%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 200.77 us (91.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 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 | 5.5306e+05 | 65536 | 2 | 1.185e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.35733481482045 (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.69 us (2.7%)
patch tree reduce : 2.28 us (1.1%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 189.97 us (90.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.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 | 5.7071e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.1990602460744 (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.68 us (2.5%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 203.99 us (91.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (56.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 | 5.7208e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.49642722588393 (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.55 us (2.6%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 197.51 us (91.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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 | 5.7230e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.54407492566065 (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.45 us (2.7%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 185.43 us (90.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (55.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 | 5.6192e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.28428116352839 (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 : 5.33 us (2.6%)
patch tree reduce : 2.29 us (1.1%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 186.64 us (90.4%)
LB move op cnt : 0
LB apply : 3.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.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 | 5.6404e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.7473946351484 (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.43 us (2.1%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 229.88 us (90.0%)
LB move op cnt : 0
LB apply : 4.61 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 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 | 5.6917e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.91460888986839 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 788.405433997 (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 : 8.12 us (3.0%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 245.50 us (91.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (59.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 | 5.5241e+05 | 65536 | 2 | 1.186e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.21467640332068 (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.48 us (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 195.95 us (91.1%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.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 | 5.6175e+05 | 65536 | 2 | 1.167e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.2489040422347 (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.32 us (2.2%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 218.45 us (91.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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 | 5.6562e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.09121942981851 (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.57 us (2.7%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.40 us (0.7%)
LB compute : 188.83 us (90.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (56.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 | 5.6497e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.94843109296399 (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.39 us (2.6%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 185.47 us (90.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.05 us (93.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 | 5.5801e+05 | 65536 | 2 | 1.174e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.43535075813568 (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.44 us (2.6%)
patch tree reduce : 2.26 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 186.34 us (90.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.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 | 5.7044e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.13849668696471 (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.43 us (2.6%)
patch tree reduce : 2.42 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 192.55 us (90.8%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.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 | 5.6552e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.06910387022222 (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.52 us (2.7%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 186.04 us (90.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (53.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 | 5.6567e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.10212665115095 (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.67 us (2.8%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 992.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 184.30 us (90.2%)
LB move op cnt : 0
LB apply : 3.52 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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 | 5.5314e+05 | 65536 | 2 | 1.185e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.37407181162308 (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.23 us (2.5%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 191.27 us (91.0%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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 | 5.6529e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.01839269730675 (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.41 us (2.2%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 226.07 us (91.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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 | 5.6024e+05 | 65536 | 2 | 1.170e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.91988682123853 (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 : 5.32 us (2.6%)
patch tree reduce : 2.20 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 188.79 us (90.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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 | 5.6933e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.89717099759021 (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.39 us (2.6%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 191.07 us (90.7%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.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.0449e+05 | 65536 | 2 | 1.620e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.66119416835421 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 790.0258457580001 (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 : 7.71 us (2.6%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 277.26 us (92.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (53.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 | 5.5485e+05 | 65536 | 2 | 1.181e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.74747227065605 (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.39 us (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 214.21 us (91.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (57.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 | 5.6200e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.303027772475 (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.58 us (2.7%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 188.16 us (90.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.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 | 5.6577e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.12348770912166 (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.21 us (2.5%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 192.19 us (90.8%)
LB move op cnt : 0
LB apply : 3.39 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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 | 5.5433e+05 | 65536 | 2 | 1.182e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.63291225269002 (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.34 us (2.5%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 196.87 us (90.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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 | 5.2397e+05 | 65536 | 2 | 1.251e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.02576331054729 (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.84 us (2.8%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 187.11 us (90.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.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 | 5.6317e+05 | 65536 | 2 | 1.164e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.5564848476033 (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.80 us (3.0%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.11 us (0.6%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 176.68 us (90.1%)
LB move op cnt : 0
LB apply : 3.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.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.9120e+05 | 65536 | 2 | 1.334e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.89548878639876 (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.47 us (2.6%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 194.12 us (91.0%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 5.0694e+05 | 65536 | 2 | 1.293e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.32162111663132 (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.02 us (2.3%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 197.77 us (91.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.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.2931e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.42667915762098 (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.14 us (2.3%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 203.56 us (91.3%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 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.1806e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.97846906274195 (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 : 5.33 us (2.4%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 203.93 us (91.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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.1225e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.71378000777054 (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.55 us (2.1%)
patch tree reduce : 2.18 us (0.8%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 242.21 us (92.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.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.8804e+05 | 65536 | 2 | 1.689e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.44579909831333 (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.45 us (2.4%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 206.67 us (91.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (55.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.7946e+05 | 65536 | 2 | 1.727e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.278261806384904 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 791.877488111 (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.53 us (2.9%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 237.11 us (91.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 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 | 5.5984e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.83326915088733 (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.37 us (1.9%)
patch tree reduce : 2.27 us (0.8%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 261.84 us (91.1%)
LB move op cnt : 0
LB apply : 5.06 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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 | 5.6989e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.01994072359213 (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 : 6.06 us (2.9%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 188.37 us (90.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.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 | 5.6630e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.23887299582682 (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.33 us (2.3%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 215.83 us (91.7%)
LB move op cnt : 0
LB apply : 3.58 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (54.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.9893e+05 | 65536 | 2 | 1.314e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.57668557717615 (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.64 us (0.6%)
patch tree reduce : 1.92 us (0.2%)
gen split merge : 1.05 us (0.1%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.1%)
LB compute : 972.74 us (98.0%)
LB move op cnt : 0
LB apply : 3.48 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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 | 5.5591e+05 | 65536 | 2 | 1.179e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.97787331092881 (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.73 us (2.5%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 210.51 us (91.0%)
LB move op cnt : 0
LB apply : 3.57 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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 | 5.6279e+05 | 65536 | 2 | 1.164e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.47458614972186 (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.53 us (2.7%)
patch tree reduce : 1.77 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 186.93 us (90.7%)
LB move op cnt : 0
LB apply : 3.43 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.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 | 5.6293e+05 | 65536 | 2 | 1.164e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.50619411016693 (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.63 us (2.7%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 192.18 us (90.7%)
LB move op cnt : 0
LB apply : 2.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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 | 5.7011e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.06742831133573 (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.47 us (2.8%)
patch tree reduce : 2.12 us (1.1%)
gen split merge : 1.10 us (0.6%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 178.08 us (90.1%)
LB move op cnt : 0
LB apply : 3.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (54.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 | 5.6801e+05 | 65536 | 2 | 1.154e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.60989828319538 (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.39 us (2.4%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 206.16 us (91.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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 | 5.5566e+05 | 65536 | 2 | 1.179e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.92332356192226 (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.69 us (2.6%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 200.58 us (90.9%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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 | 5.6440e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.82556917896196 (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.60 us (2.6%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 192.57 us (91.0%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 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 | 5.6109e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.10367549960567 (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 : 5.36 us (2.0%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 241.91 us (92.4%)
LB move op cnt : 0
LB apply : 3.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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 | 5.5788e+05 | 65536 | 2 | 1.175e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.3895792795478 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 793.4767074600001 (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.87 us (3.1%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 234.39 us (91.6%)
LB move op cnt : 0
LB apply : 3.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 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 | 5.5311e+05 | 65536 | 2 | 1.185e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.36853496281498 (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.68 us (2.5%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 203.66 us (91.0%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 5.6320e+05 | 65536 | 2 | 1.164e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.56397324639464 (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.62 us (2.3%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 229.94 us (92.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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 | 5.5899e+05 | 65536 | 2 | 1.172e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.64804757392518 (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 : 5.50 us (2.4%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 205.65 us (91.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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 | 5.0643e+05 | 65536 | 2 | 1.294e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.21027048899725 (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 : 6.00 us (2.6%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 211.69 us (91.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 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.8757e+05 | 65536 | 2 | 1.344e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.10501812443236 (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.54 us (2.3%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 223.68 us (91.9%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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 | 5.6515e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.98806941059706 (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.60 us (2.1%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 252.55 us (92.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.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 | 5.5890e+05 | 65536 | 2 | 1.173e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.62778763219787 (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.60 us (2.5%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 205.55 us (91.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 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 | 5.6077e+05 | 65536 | 2 | 1.169e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.03528374354134 (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 : 16.66 us (7.1%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 204.01 us (86.8%)
LB move op cnt : 0
LB apply : 3.64 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.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 | 5.4852e+05 | 65536 | 2 | 1.195e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.36918943017861 (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.34 us (2.5%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 193.62 us (90.9%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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 | 5.6707e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.40522852840222 (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.21 us (2.5%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 192.24 us (90.8%)
LB move op cnt : 0
LB apply : 3.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.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 | 5.6395e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.72736885844685 (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.53 us (2.5%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 202.13 us (91.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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 | 5.5739e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.29959893371277 (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 : 5.44 us (2.6%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 189.54 us (90.8%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (54.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 | 5.5203e+05 | 65536 | 2 | 1.187e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.59845784132648 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 795.09018446 (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 : 7.65 us (2.8%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 247.51 us (91.8%)
LB move op cnt : 0
LB apply : 3.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (58.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 | 5.4116e+05 | 65536 | 2 | 1.211e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.76724559167106 (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.45 us (2.6%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 188.77 us (90.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.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 | 5.3168e+05 | 65536 | 2 | 1.233e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.70376235062669 (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.40 us (2.5%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 194.17 us (90.8%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (48.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 | 5.4685e+05 | 65536 | 2 | 1.198e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.00605119035161 (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.46 us (2.3%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 220.99 us (91.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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 | 5.2804e+05 | 65536 | 2 | 1.241e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.91285663764911 (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.55 us (2.5%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 198.39 us (90.8%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.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 | 5.4665e+05 | 65536 | 2 | 1.199e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.96252712616894 (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.21 us (2.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 193.65 us (90.9%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.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 | 5.4106e+05 | 65536 | 2 | 1.211e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.74641735658932 (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.58 us (2.6%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 992.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 196.17 us (90.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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 | 5.5033e+05 | 65536 | 2 | 1.191e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.7625846157822 (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.81 us (1.8%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 299.46 us (93.8%)
LB move op cnt : 0
LB apply : 3.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (55.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 | 5.3878e+05 | 65536 | 2 | 1.216e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.24956568631933 (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.16 us (2.2%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 218.63 us (92.0%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (54.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 | 5.6310e+05 | 65536 | 2 | 1.164e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.54105489128303 (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.34 us (2.6%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 942.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 185.10 us (90.4%)
LB move op cnt : 0
LB apply : 3.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (55.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 | 5.6966e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.96911118690147 (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.74 us (2.5%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 206.26 us (91.1%)
LB move op cnt : 0
LB apply : 3.51 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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 | 5.7446e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.01394859210004 (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 : 6.02 us (2.9%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 188.70 us (90.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.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.8621e+05 | 65536 | 2 | 1.348e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.8103358795123 (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.97 us (3.0%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 181.69 us (90.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.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 | 5.4014e+05 | 65536 | 2 | 1.213e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.99238718866674 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 796.7212400740001 (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 : 7.81 us (3.3%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 215.44 us (90.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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 | 5.7754e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.68472081618205 (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.32 us (2.4%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 200.28 us (91.5%)
LB move op cnt : 0
LB apply : 2.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (55.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.2925e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.41416512745414 (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 : 5.36 us (2.4%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 204.97 us (90.3%)
LB move op cnt : 0
LB apply : 4.78 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (54.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.2053e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.51566974072854 (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.34 us (2.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 206.04 us (91.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (55.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.5585e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.20325617934894 (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.36 us (2.4%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 204.98 us (91.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.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 | 5.6249e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.40848049647381 (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.45 us (2.6%)
patch tree reduce : 2.30 us (1.1%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.5%)
LB compute : 191.59 us (90.7%)
LB move op cnt : 0
LB apply : 2.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.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 | 5.5358e+05 | 65536 | 2 | 1.184e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.47061670123438 (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.38 us (2.5%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 193.99 us (90.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 5.5551e+05 | 65536 | 2 | 1.180e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.89007380979922 (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 : 5.75 us (2.3%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 228.82 us (92.0%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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 | 5.5538e+05 | 65536 | 2 | 1.180e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.86230948706961 (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.26 us (2.3%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 213.14 us (91.8%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.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 | 5.5021e+05 | 65536 | 2 | 1.191e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.73744974458378 (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.09 us (2.4%)
patch tree reduce : 2.28 us (1.1%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 189.90 us (90.5%)
LB move op cnt : 0
LB apply : 3.32 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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 | 5.5346e+05 | 65536 | 2 | 1.184e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.44380857441077 (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.52 us (2.7%)
patch tree reduce : 2.34 us (1.2%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 181.55 us (90.1%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.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 | 5.6317e+05 | 65536 | 2 | 1.164e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.55737793065043 (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.24 us (2.6%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 185.78 us (90.6%)
LB move op cnt : 0
LB apply : 2.93 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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 | 5.5715e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.24647183057832 (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 : 6.08 us (2.9%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 185.90 us (90.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (55.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 | 5.6606e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.49508938738558 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 798.4050963660001 (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.99 us (2.7%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 235.90 us (91.6%)
LB move op cnt : 0
LB apply : 3.63 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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 | 5.6259e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.4312862237105 (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.55 us (2.7%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 185.79 us (90.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.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 | 5.6765e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.53158701169917 (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.52 us (2.6%)
patch tree reduce : 2.29 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 189.48 us (90.6%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 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 | 5.6056e+05 | 65536 | 2 | 1.169e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.99003681957608 (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.59 us (2.5%)
patch tree reduce : 2.35 us (1.1%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 200.34 us (91.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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 | 5.6849e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.71535968755359 (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.22 us (2.5%)
patch tree reduce : 2.26 us (1.1%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 185.37 us (90.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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 | 5.6350e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.62883724763473 (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.40 us (2.0%)
patch tree reduce : 2.27 us (0.9%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 244.96 us (92.5%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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.7373e+05 | 65536 | 2 | 1.754e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.33200036855347 (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.97 us (2.8%)
patch tree reduce : 2.51 us (1.2%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 189.99 us (89.7%)
LB move op cnt : 0
LB apply : 3.80 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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 | 5.4164e+05 | 65536 | 2 | 1.210e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.87296257480334 (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.89 us (2.8%)
patch tree reduce : 2.24 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 190.09 us (90.4%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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 | 5.3747e+05 | 65536 | 2 | 1.219e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.96419440630235 (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.47 us (2.4%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 209.18 us (91.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 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 | 5.6862e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.74254577161317 (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.42 us (2.3%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 215.19 us (91.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.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 | 5.3974e+05 | 65536 | 2 | 1.214e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.45885656702151 (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.47 us (2.4%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 213.10 us (91.8%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.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 | 5.7872e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.94116972261284 (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.92 us (2.9%)
patch tree reduce : 2.24 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 187.18 us (90.3%)
LB move op cnt : 0
LB apply : 3.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (68.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.5914e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.9189938091654 (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.45 us (2.4%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 207.47 us (91.5%)
LB move op cnt : 0
LB apply : 2.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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 | 5.1938e+05 | 65536 | 2 | 1.262e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.18749082191917 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 800.0823629390001 (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.98 us (3.2%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 229.77 us (91.1%)
LB move op cnt : 0
LB apply : 2.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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 | 5.7931e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.06907436643975 (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.22 us (2.2%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 218.88 us (91.3%)
LB move op cnt : 0
LB apply : 5.00 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.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 | 5.7519e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.17282753120912 (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.63 us (2.4%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 218.97 us (91.7%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (58.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 | 5.7922e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.04920011834712 (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.44 us (2.1%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 237.34 us (92.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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 | 5.7398e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.90972712782381 (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.31 us (2.2%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 220.34 us (91.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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.7868e+05 | 65536 | 2 | 1.369e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.17023139868067 (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 : 5.35 us (2.3%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 214.36 us (91.6%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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 | 5.1334e+05 | 65536 | 2 | 1.277e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.71300826466607 (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.59 us (2.1%)
patch tree reduce : 2.41 us (0.9%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 251.19 us (92.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 | 5.4232e+05 | 65536 | 2 | 1.208e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.02022829893686 (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 : 5.50 us (2.4%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 209.59 us (91.2%)
LB move op cnt : 0
LB apply : 3.52 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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 | 5.3489e+05 | 65536 | 2 | 1.225e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.40309387970261 (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 : 5.63 us (2.5%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 209.71 us (91.7%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.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 | 5.2589e+05 | 65536 | 2 | 1.246e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.44500341825908 (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.66 us (2.5%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 209.99 us (91.5%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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 | 5.5497e+05 | 65536 | 2 | 1.181e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.77376733967209 (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.04 us (2.3%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 203.95 us (91.4%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (55.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 | 5.5199e+05 | 65536 | 2 | 1.187e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.12458517530726 (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.40 us (2.4%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 203.33 us (90.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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 | 5.6169e+05 | 65536 | 2 | 1.167e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.23635176830443 (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.67 us (2.7%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 192.01 us (90.9%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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 | 5.6511e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.36697095566178 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 801.698410089 (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 : 7.28 us (3.0%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 218.15 us (90.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 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 | 5.5737e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.29613573104166 (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.41 us (2.6%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 185.31 us (90.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (58.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 | 5.4317e+05 | 65536 | 2 | 1.207e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.20595906267981 (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.59 us (2.6%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 192.53 us (90.8%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.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.1830e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.02984134450602 (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 : 5.47 us (2.3%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 213.86 us (91.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.1802e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.9694633471669 (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.65 us (2.4%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 220.51 us (91.8%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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.2307e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.06835188038386 (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.37 us (2.3%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 213.01 us (91.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.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.2871e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.29585711882807 (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.68 us (1.2%)
patch tree reduce : 2.23 us (0.5%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.2%)
LB compute : 438.13 us (95.6%)
LB move op cnt : 0
LB apply : 3.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (56.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.2514e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.51974833593108 (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.53 us (2.2%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 228.60 us (92.0%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.2791e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.1217041205609 (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.61 us (2.1%)
patch tree reduce : 2.42 us (0.9%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 251.31 us (92.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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.1981e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.35900364636954 (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.31 us (2.4%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 199.79 us (91.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (56.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.2497e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.48154638555023 (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.52 us (2.4%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 207.84 us (91.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.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.2159e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.74682189789469 (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 : 5.50 us (2.4%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 207.21 us (91.4%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (54.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.2361e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.18709513222376 (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.59 us (2.5%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 200.32 us (90.9%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.2521e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.461706295323374 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 803.699192474 (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 : 8.13 us (2.9%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 254.54 us (91.8%)
LB move op cnt : 0
LB apply : 3.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 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 | 5.6487e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.92722290844047 (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.94 us (2.5%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 214.37 us (91.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.4095e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.96006139423912 (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.50 us (2.4%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 207.29 us (91.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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 | 5.4969e+05 | 65536 | 2 | 1.192e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.62299732382526 (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.45 us (2.6%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 193.00 us (90.8%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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 | 5.3662e+05 | 65536 | 2 | 1.221e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.77845437102269 (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.52 us (2.4%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 208.42 us (91.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (54.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 | 5.1956e+05 | 65536 | 2 | 1.261e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.06763435763726 (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.37 us (2.4%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 207.41 us (91.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (58.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 | 5.2513e+05 | 65536 | 2 | 1.248e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.27897335644148 (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.81 us (2.4%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 223.28 us (91.9%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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 | 5.2747e+05 | 65536 | 2 | 1.242e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.78912776220791 (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.42 us (2.4%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 203.22 us (91.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.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 | 5.3057e+05 | 65536 | 2 | 1.235e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.46386333390248 (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.45 us (2.2%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 223.32 us (91.9%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.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 | 5.0280e+05 | 65536 | 2 | 1.303e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.42027502772235 (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.73 us (2.1%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 255.69 us (92.7%)
LB move op cnt : 0
LB apply : 3.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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 | 5.1708e+05 | 65536 | 2 | 1.267e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.52824649969482 (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.53 us (2.4%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 211.37 us (91.3%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 5.3101e+05 | 65536 | 2 | 1.234e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.55948136533013 (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.60 us (2.7%)
patch tree reduce : 2.31 us (1.1%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 187.39 us (90.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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 | 5.3937e+05 | 65536 | 2 | 1.215e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.37718336582608 (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.41 us (2.4%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 207.54 us (91.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (55.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 | 5.1537e+05 | 65536 | 2 | 1.272e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.64483384523987 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 805.4210886000001 (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 : 8.06 us (3.4%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 216.73 us (90.6%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 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 | 5.3506e+05 | 65536 | 2 | 1.225e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.43928992092718 (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 : 6.07 us (2.8%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 194.12 us (90.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.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 | 5.4727e+05 | 65536 | 2 | 1.198e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.09735795226749 (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.54 us (2.5%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 199.18 us (91.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.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.3138e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.87674308615495 (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.29 us (2.3%)
patch tree reduce : 2.41 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 213.06 us (91.6%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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 | 5.6696e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.38202439609235 (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.71 us (2.6%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 201.49 us (91.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.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 | 5.1804e+05 | 65536 | 2 | 1.265e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.73603391337608 (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.56 us (2.4%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 209.20 us (91.7%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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 | 5.6470e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.89033770125243 (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.44 us (2.6%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 932.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 186.82 us (90.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.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 | 5.5089e+05 | 65536 | 2 | 1.190e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.88456875720713 (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.06 us (2.6%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 212.25 us (91.4%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 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 | 5.4507e+05 | 65536 | 2 | 1.202e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.6174741053149 (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.18 us (2.4%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 196.31 us (91.1%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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 | 5.5961e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.78329762424191 (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.63 us (2.5%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 204.33 us (91.4%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.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 | 5.5803e+05 | 65536 | 2 | 1.174e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.4384444934364 (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.40 us (2.6%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 191.12 us (90.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.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 | 5.4778e+05 | 65536 | 2 | 1.196e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.2091781056462 (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.58 us (2.7%)
patch tree reduce : 2.20 us (1.1%)
gen split merge : 992.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 186.54 us (90.5%)
LB move op cnt : 0
LB apply : 3.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.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 | 5.5378e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.51332373971651 (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.34 us (2.6%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 189.69 us (90.7%)
LB move op cnt : 0
LB apply : 3.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.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.2320e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.189158690755534 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 807.0997621790001 (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.91 us (2.6%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 284.44 us (92.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 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 | 5.2605e+05 | 65536 | 2 | 1.246e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.4797987918816 (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.72 us (1.0%)
patch tree reduce : 1.86 us (0.3%)
gen split merge : 1.02 us (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 576.07 us (96.8%)
LB move op cnt : 0
LB apply : 3.20 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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 | 5.5328e+05 | 65536 | 2 | 1.185e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.40442482251478 (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.46 us (2.6%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 191.37 us (90.7%)
LB move op cnt : 0
LB apply : 3.34 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.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.6858e+05 | 65536 | 2 | 1.399e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.97321512685468 (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 : 8.79 us (3.8%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.4%)
LB compute : 206.92 us (90.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.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.6499e+05 | 65536 | 2 | 1.409e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.1910187656253 (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.59 us (2.7%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 188.57 us (90.6%)
LB move op cnt : 0
LB apply : 3.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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 | 5.6579e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.12681156098581 (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.51 us (2.6%)
patch tree reduce : 2.27 us (1.1%)
gen split merge : 991.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 190.51 us (90.7%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 | 5.4753e+05 | 65536 | 2 | 1.197e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.15354641162442 (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 : 5.67 us (2.7%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 186.46 us (90.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.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 | 5.4330e+05 | 65536 | 2 | 1.206e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.23311021250147 (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 : 6.03 us (2.9%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 187.85 us (90.1%)
LB move op cnt : 0
LB apply : 3.43 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.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 | 5.5396e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.5530865153466 (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.50 us (2.4%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 208.95 us (91.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.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 | 5.8605e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.53552289214487 (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.62 us (2.5%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 203.61 us (91.4%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.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.5574e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.1774251787595 (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.43 us (2.4%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 210.50 us (91.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.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 | 5.5021e+05 | 65536 | 2 | 1.191e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.73639724215066 (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.37 us (2.6%)
patch tree reduce : 2.23 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 186.56 us (90.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.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 | 5.6339e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.60579555396002 (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.61 us (2.7%)
patch tree reduce : 2.18 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 187.50 us (90.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (55.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 | 5.7174e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.26291911888221 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 808.775377442 (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 : 7.75 us (2.8%)
patch tree reduce : 2.21 us (0.8%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 250.39 us (91.6%)
LB move op cnt : 0
LB apply : 3.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 | 5.5251e+05 | 65536 | 2 | 1.186e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.23660300490734 (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.38 us (2.6%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 188.53 us (90.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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 | 4.2477e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.4378337017331 (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.11 us (2.2%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 214.28 us (91.9%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.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.2322e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.10209885677766 (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.27 us (2.3%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 210.36 us (91.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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.0927e+05 | 65536 | 2 | 1.601e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.06459869622464 (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.09 us (2.2%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 208.65 us (91.8%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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.1411e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.11972981570365 (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.84 us (2.5%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 212.21 us (91.5%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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.1201e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.66204097048399 (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.42 us (2.4%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 202.28 us (91.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (54.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.1571e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.46649198024744 (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.62 us (2.3%)
patch tree reduce : 2.22 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 227.37 us (92.2%)
LB move op cnt : 0
LB apply : 2.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (54.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.0725e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.62563891819481 (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 : 6.07 us (2.6%)
patch tree reduce : 2.34 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 214.42 us (91.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.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.0738e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.65494250103174 (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.64 us (2.5%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 210.03 us (91.4%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (55.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.1535e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.38842160274253 (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.51 us (2.5%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 200.13 us (91.2%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.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.1128e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.50352339580152 (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 : 6.30 us (2.8%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 206.99 us (91.1%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (55.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.9556e+05 | 65536 | 2 | 1.657e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.08167634528941 (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.46 us (2.5%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 202.44 us (91.5%)
LB move op cnt : 0
LB apply : 2.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (55.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.3700e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.05502971865642 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 810.851857428 (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 : 8.73 us (2.9%)
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.20 us (0.4%)
LB compute : 274.76 us (92.0%)
LB move op cnt : 0
LB apply : 3.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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 | 5.5792e+05 | 65536 | 2 | 1.175e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.41424270383276 (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.38 us (2.2%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 220.28 us (92.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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 | 5.0362e+05 | 65536 | 2 | 1.301e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.59899431082377 (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.77 us (2.4%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 218.10 us (91.6%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.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 | 5.4822e+05 | 65536 | 2 | 1.195e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.30302141217082 (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.32 us (2.3%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 211.72 us (91.7%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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 | 5.5011e+05 | 65536 | 2 | 1.191e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.71547066088621 (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.65 us (2.4%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 218.87 us (91.8%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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 | 5.4588e+05 | 65536 | 2 | 1.201e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.79422434406023 (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 : 8.23 us (3.5%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 212.05 us (90.6%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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 | 5.4292e+05 | 65536 | 2 | 1.207e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.15122922114963 (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.44 us (2.6%)
patch tree reduce : 2.24 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 188.13 us (90.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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 | 5.5429e+05 | 65536 | 2 | 1.182e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.6245867197024 (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.90 us (2.5%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 218.90 us (91.8%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.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 | 5.4900e+05 | 65536 | 2 | 1.194e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.47415815757158 (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.46 us (2.6%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 191.36 us (90.8%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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 | 5.5687e+05 | 65536 | 2 | 1.177e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.18551847771617 (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.56 us (2.7%)
patch tree reduce : 2.27 us (1.1%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.6%)
LB compute : 182.67 us (90.2%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (55.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 | 5.4470e+05 | 65536 | 2 | 1.203e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.53725605880085 (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.33 us (2.6%)
patch tree reduce : 2.28 us (1.1%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 186.50 us (90.6%)
LB move op cnt : 0
LB apply : 3.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (55.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 | 5.3362e+05 | 65536 | 2 | 1.228e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.12694977093527 (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.92 us (2.7%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 201.30 us (90.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.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 | 5.2626e+05 | 65536 | 2 | 1.245e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.52409686861405 (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.70 us (2.4%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 214.04 us (91.6%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.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 | 5.4300e+05 | 65536 | 2 | 1.207e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.37870645151983 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 812.496467616 (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 : 8.32 us (3.0%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 251.87 us (91.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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 | 5.3169e+05 | 65536 | 2 | 1.233e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.70685255088259 (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.81 us (2.7%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 193.18 us (90.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.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 | 5.4746e+05 | 65536 | 2 | 1.197e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.13930075133574 (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.35 us (2.6%)
patch tree reduce : 1.81 us (0.9%)
gen split merge : 941.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 183.29 us (90.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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 | 5.5480e+05 | 65536 | 2 | 1.181e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.73583456127518 (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.39 us (2.4%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 200.24 us (90.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 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 | 5.4807e+05 | 65536 | 2 | 1.196e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.27169596880128 (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.12 us (2.5%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 187.74 us (90.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.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 | 5.4223e+05 | 65536 | 2 | 1.209e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.00141638772399 (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.51 us (2.6%)
patch tree reduce : 2.34 us (1.1%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 193.24 us (90.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (58.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 | 5.4093e+05 | 65536 | 2 | 1.212e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.71643538356234 (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.39 us (2.6%)
patch tree reduce : 2.21 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 190.09 us (90.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 5.4340e+05 | 65536 | 2 | 1.206e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.25548569480556 (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.71 us (2.3%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 223.15 us (91.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.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 | 5.6514e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.9863512840337 (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 : 5.42 us (2.4%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 206.06 us (91.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.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.8759e+05 | 65536 | 2 | 1.344e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.10857997547905 (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.26 us (2.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 201.58 us (91.2%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.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 | 5.5490e+05 | 65536 | 2 | 1.181e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.75836887641825 (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.71 us (2.7%)
patch tree reduce : 2.29 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 189.38 us (90.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (55.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 | 5.5908e+05 | 65536 | 2 | 1.172e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.66739361420012 (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 : 6.01 us (2.7%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 202.73 us (91.0%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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 | 5.4798e+05 | 65536 | 2 | 1.196e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.2510910299589 (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.34 us (2.5%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 190.83 us (90.9%)
LB move op cnt : 0
LB apply : 2.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.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 | 5.5625e+05 | 65536 | 2 | 1.178e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.16978855018316 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 814.121991058 (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.77 us (3.0%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 236.22 us (91.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (55.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 | 5.3151e+05 | 65536 | 2 | 1.233e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.6666468525961 (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 : 5.22 us (2.5%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 187.44 us (90.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.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 | 5.4787e+05 | 65536 | 2 | 1.196e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.22832627076251 (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.76 us (2.7%)
patch tree reduce : 2.31 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 191.65 us (90.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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 | 5.3712e+05 | 65536 | 2 | 1.220e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.88783623278954 (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.41 us (2.5%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 982.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 197.34 us (91.0%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (55.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 | 5.5341e+05 | 65536 | 2 | 1.184e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.43402530883067 (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.31 us (2.6%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.5%)
LB compute : 188.27 us (90.7%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.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 | 5.5163e+05 | 65536 | 2 | 1.188e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.04652486360546 (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.47 us (2.5%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 195.93 us (91.0%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (53.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 | 5.5503e+05 | 65536 | 2 | 1.181e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.78677186280537 (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 : 5.57 us (2.6%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 196.50 us (91.0%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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 | 5.5428e+05 | 65536 | 2 | 1.182e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.62322780797906 (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.30 us (2.4%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 204.62 us (91.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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 | 5.7935e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.07832225636695 (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.33 us (2.6%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 952.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 187.08 us (90.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (53.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 | 5.7397e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.90729086295907 (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.38 us (2.6%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 952.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 191.19 us (90.7%)
LB move op cnt : 0
LB apply : 2.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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 | 5.5586e+05 | 65536 | 2 | 1.179e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.96632452938003 (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.54 us (2.2%)
patch tree reduce : 2.32 us (0.9%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 228.76 us (91.9%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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 | 5.7419e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.95474346830287 (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.57 us (2.8%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 182.66 us (90.5%)
LB move op cnt : 0
LB apply : 3.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (55.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 | 5.6429e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.80026369071325 (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.46 us (2.6%)
patch tree reduce : 2.22 us (1.1%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 188.82 us (90.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 5.7261e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.38006830572598 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 815.7087829000001 (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 : 8.15 us (3.2%)
patch tree reduce : 1.60 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 233.19 us (91.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.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 | 5.5317e+05 | 65536 | 2 | 1.185e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.38083761797505 (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 : 5.42 us (2.4%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 205.02 us (91.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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 | 5.3467e+05 | 65536 | 2 | 1.226e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.35576802947897 (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.57 us (2.7%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 189.72 us (90.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (57.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 | 5.0602e+05 | 65536 | 2 | 1.295e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.12094458299488 (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.80 us (2.5%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 216.18 us (91.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (55.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 | 5.2638e+05 | 65536 | 2 | 1.245e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.55055894962773 (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.60 us (2.5%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 199.63 us (90.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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 | 5.3447e+05 | 65536 | 2 | 1.226e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.3118147626027 (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.35 us (2.5%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 972.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 191.19 us (90.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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 | 5.5016e+05 | 65536 | 2 | 1.191e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.72675971361198 (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.54 us (1.2%)
patch tree reduce : 2.41 us (0.5%)
gen split merge : 1.09 us (0.2%)
split / merge op : 0/0
apply split merge : 1.35 us (0.3%)
LB compute : 448.22 us (95.6%)
LB move op cnt : 0
LB apply : 3.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (55.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 | 5.0334e+05 | 65536 | 2 | 1.302e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.53741605617857 (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.53 us (2.6%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 192.61 us (90.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.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.9209e+05 | 65536 | 2 | 1.332e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.08931571694397 (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.43 us (2.2%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 221.93 us (91.8%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.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.3551e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.7762644312068 (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.41 us (2.6%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 190.70 us (90.9%)
LB move op cnt : 0
LB apply : 2.93 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (51.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.5876e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.83509507717524 (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.32 us (2.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 205.66 us (91.6%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 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.5272e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.52007551714064 (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.69 us (2.8%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 991.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.5%)
LB compute : 186.33 us (90.6%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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 | 2.8952e+05 | 65536 | 2 | 2.264e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.00655389573417 (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.56 us (2.2%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 237.88 us (92.3%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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 | 3.8874e+05 | 65536 | 2 | 1.686e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.53334937999589 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 817.600636362 (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 : 7.48 us (2.4%)
patch tree reduce : 1.82 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 : 289.14 us (92.9%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 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 | 5.5207e+05 | 65536 | 2 | 1.187e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.14275637124847 (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.51 us (2.2%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 230.28 us (92.1%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (54.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.0354e+05 | 65536 | 2 | 1.624e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.81826279053826 (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 : 5.15 us (2.2%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 211.30 us (91.6%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.2992e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.55871003439712 (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 : 5.60 us (2.5%)
patch tree reduce : 2.37 us (1.1%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 205.07 us (91.3%)
LB move op cnt : 0
LB apply : 2.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.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.1992e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.38273424919826 (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 : 4.96 us (2.2%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 205.85 us (91.5%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (54.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.1106e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.45453840567805 (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.35 us (2.4%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 205.60 us (91.5%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (53.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.2534e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.56260137099375 (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.33 us (2.4%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 205.08 us (91.4%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.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.0569e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.2857119243911 (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.18 us (2.2%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 220.48 us (92.1%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.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.2113e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.64717628712168 (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.41 us (2.2%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 222.62 us (92.1%)
LB move op cnt : 0
LB apply : 3.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.3103e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.80154989800738 (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.42 us (2.5%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 196.72 us (90.9%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.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.1194e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.64589482985217 (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.27 us (2.2%)
patch tree reduce : 2.34 us (1.0%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 224.65 us (92.1%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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.1851e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.07629864831324 (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.26 us (2.4%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 202.50 us (91.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (58.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.9938e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.91289303406666 (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.65 us (1.9%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 274.88 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.31 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.5950e+05 | 65536 | 2 | 1.823e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.58163571077322 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 819.7067465990001 (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 : 7.92 us (2.7%)
patch tree reduce : 2.21 us (0.8%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 269.87 us (92.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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 | 5.2393e+05 | 65536 | 2 | 1.251e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.01861371958555 (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.72 us (2.6%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 201.04 us (90.9%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.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 | 5.3828e+05 | 65536 | 2 | 1.218e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.13968600966608 (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.95 us (2.7%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 198.50 us (90.9%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.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 | 5.3592e+05 | 65536 | 2 | 1.223e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.62641799440063 (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.19 us (2.3%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 206.56 us (91.5%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (7.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 | 5.6224e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.35596707337449 (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.94 us (2.7%)
patch tree reduce : 2.27 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 195.32 us (90.4%)
LB move op cnt : 0
LB apply : 3.42 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (52.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 | 5.4770e+05 | 65536 | 2 | 1.197e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.19038173543666 (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.32 us (2.5%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 195.18 us (90.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.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 | 5.5314e+05 | 65536 | 2 | 1.185e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.37448633382621 (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.46 us (2.6%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 186.61 us (90.5%)
LB move op cnt : 0
LB apply : 3.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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 | 5.4052e+05 | 65536 | 2 | 1.212e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.62749099848688 (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.29 us (2.6%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 185.65 us (90.8%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (57.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 | 5.1226e+05 | 65536 | 2 | 1.279e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.47736293227622 (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.43 us (2.4%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 205.36 us (91.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 | 5.7946e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.10270114880619 (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.29 us (2.2%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 223.49 us (92.1%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.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 | 5.7822e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.833246627285 (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 : 5.17 us (2.6%)
patch tree reduce : 2.02 us (1.0%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 180.35 us (90.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.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 | 5.6673e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.33180376303983 (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.30 us (2.5%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 190.37 us (91.0%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (54.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.7590e+05 | 65536 | 2 | 1.377e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.56530726022037 (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.44 us (2.6%)
patch tree reduce : 1.86 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 187.47 us (90.8%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (53.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 | 5.8092e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.50337638219138 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 821.340808925 (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.67 us (2.9%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 244.18 us (91.8%)
LB move op cnt : 0
LB apply : 3.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (54.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.8150e+05 | 65536 | 2 | 1.361e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.78491513792805 (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.41 us (2.3%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 217.67 us (91.8%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.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 | 5.6846e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.70953588211555 (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.79 us (2.8%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 188.13 us (90.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (54.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 | 5.5742e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.30641759520158 (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.13 us (2.3%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 201.92 us (91.3%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.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 | 5.7038e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.12612595475385 (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.57 us (2.4%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 212.66 us (91.7%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (51.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 | 5.7633e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.42065647748795 (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.68 us (2.8%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 183.95 us (90.4%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (55.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 | 5.8381e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.04795479330451 (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.47 us (2.6%)
patch tree reduce : 1.68 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 191.50 us (90.9%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (55.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 | 5.8252e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.76756494371115 (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 : 5.50 us (2.6%)
patch tree reduce : 2.02 us (1.0%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 193.23 us (90.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.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 | 5.7600e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.35021053096598 (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.57 us (2.5%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 199.28 us (91.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (55.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 | 5.7930e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.06729025264823 (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.41 us (2.6%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 185.91 us (90.8%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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 | 5.7284e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.66170032880441 (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.42 us (2.6%)
patch tree reduce : 1.79 us (0.9%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 186.79 us (90.8%)
LB move op cnt : 0
LB apply : 3.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (45.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.7722e+05 | 65536 | 2 | 1.373e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.85272766742735 (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.46 us (2.4%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 191.75 us (85.8%)
LB move op cnt : 0
LB apply : 15.81 us (7.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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 | 5.7984e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.1851200364895 (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.40 us (2.5%)
patch tree reduce : 2.29 us (1.1%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.64 us (0.8%)
LB compute : 197.49 us (90.7%)
LB move op cnt : 0
LB apply : 2.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (54.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.2640e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.62192349474521 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 822.972499949 (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 : 8.14 us (2.7%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 276.93 us (92.3%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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.8219e+05 | 65536 | 2 | 1.359e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.9349951172169 (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.36 us (2.4%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 207.53 us (91.5%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.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.7955e+05 | 65536 | 2 | 1.367e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.36005025376403 (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.85 us (2.4%)
patch tree reduce : 2.23 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 227.84 us (91.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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 | 5.7019e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.08428686155942 (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.66 us (2.4%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 214.73 us (91.6%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.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 | 5.7521e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.17784614607667 (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.44 us (2.4%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 208.85 us (91.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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 | 5.7876e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.94942783170764 (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.83 us (2.2%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 241.67 us (92.4%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (68.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 | 5.3967e+05 | 65536 | 2 | 1.214e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.44376659574067 (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.37 us (2.2%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 225.82 us (92.1%)
LB move op cnt : 0
LB apply : 2.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (56.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 | 5.8900e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.17850442223005 (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.55 us (2.2%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 234.22 us (92.3%)
LB move op cnt : 0
LB apply : 3.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (54.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.7926e+05 | 65536 | 2 | 1.367e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.29657616266795 (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.70 us (2.4%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 215.52 us (91.6%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (57.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.8860e+05 | 65536 | 2 | 1.341e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.33033936804578 (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.35 us (2.5%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 193.64 us (90.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (55.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 | 5.7654e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.46723507708002 (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.60 us (2.5%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 208.75 us (91.4%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.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 | 5.5638e+05 | 65536 | 2 | 1.178e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.07963887159985 (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.26 us (2.5%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.33 us (0.6%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 188.53 us (90.5%)
LB move op cnt : 0
LB apply : 3.40 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (56.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 | 5.5764e+05 | 65536 | 2 | 1.175e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.35370709847967 (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.20 us (2.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 206.53 us (91.4%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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 | 5.5296e+05 | 65536 | 2 | 1.185e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.72527144203451 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 824.630138308 (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 : 9.67 us (3.7%)
patch tree reduce : 2.21 us (0.9%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.4%)
LB compute : 232.73 us (90.1%)
LB move op cnt : 0
LB apply : 3.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.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 | 5.4841e+05 | 65536 | 2 | 1.195e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.34567947300874 (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 : 5.59 us (2.5%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 204.00 us (90.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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 | 5.5623e+05 | 65536 | 2 | 1.178e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.04614900907184 (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.94 us (2.2%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 201.41 us (91.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.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 | 5.3047e+05 | 65536 | 2 | 1.235e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.44050400828321 (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.22 us (2.5%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 192.77 us (90.9%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.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 | 5.4916e+05 | 65536 | 2 | 1.193e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.50855419736119 (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.59 us (2.7%)
patch tree reduce : 2.18 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 184.82 us (90.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.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 | 5.5594e+05 | 65536 | 2 | 1.179e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.98382864428562 (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.55 us (2.7%)
patch tree reduce : 2.28 us (1.1%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 185.24 us (90.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (55.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 | 5.4509e+05 | 65536 | 2 | 1.202e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.62230246063571 (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.19 us (2.3%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 207.80 us (91.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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 | 5.3983e+05 | 65536 | 2 | 1.214e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.47732749610519 (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.32 us (2.5%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 189.70 us (90.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.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.6364e+05 | 65536 | 2 | 1.414e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.89801671309891 (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.81 us (2.0%)
patch tree reduce : 2.35 us (0.8%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 267.41 us (93.1%)
LB move op cnt : 0
LB apply : 3.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 | 5.4169e+05 | 65536 | 2 | 1.210e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.88206036721103 (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.63 us (2.5%)
patch tree reduce : 2.57 us (1.1%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 205.31 us (90.5%)
LB move op cnt : 0
LB apply : 3.60 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.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 | 5.5428e+05 | 65536 | 2 | 1.182e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.62355325026566 (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.16 us (2.3%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 208.51 us (91.4%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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 | 5.0592e+05 | 65536 | 2 | 1.295e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.09954983591936 (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.50 us (2.7%)
patch tree reduce : 2.35 us (1.2%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.5%)
LB compute : 184.43 us (90.4%)
LB move op cnt : 0
LB apply : 3.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.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 | 5.3992e+05 | 65536 | 2 | 1.214e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.49661734152164 (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.65 us (2.7%)
patch tree reduce : 2.02 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 187.67 us (90.7%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.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.0941e+05 | 65536 | 2 | 1.601e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.32612994806482 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 826.3209822550001 (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.42 us (2.5%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 270.75 us (92.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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.3612e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.90935595899721 (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.17 us (2.2%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 212.68 us (91.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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 | 5.1319e+05 | 65536 | 2 | 1.277e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.67960923935016 (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.89 us (2.6%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 205.80 us (91.5%)
LB move op cnt : 0
LB apply : 2.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (54.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 | 5.6924e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.87862548283242 (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.44 us (2.5%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 200.06 us (90.9%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.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.6113e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.35187415430418 (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.62 us (2.3%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 224.29 us (91.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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 | 5.6258e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.4284559308619 (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 : 4.83 us (2.2%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 197.48 us (91.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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 | 5.4633e+05 | 65536 | 2 | 1.200e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.89288205462586 (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 : 5.24 us (2.4%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 203.02 us (91.3%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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.6522e+05 | 65536 | 2 | 1.409e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.24110591251963 (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.67 us (2.4%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 218.06 us (91.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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 | 5.1836e+05 | 65536 | 2 | 1.264e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.80543846552507 (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.44 us (2.4%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 206.76 us (91.5%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.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 | 5.8313e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.90109850895533 (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.43 us (2.4%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 209.25 us (91.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (56.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 | 5.6394e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.72427563346558 (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.15 us (2.3%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 205.37 us (91.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.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 | 5.8752e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.85593592440618 (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.33 us (2.7%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 180.42 us (90.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (43.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.8302e+05 | 65536 | 2 | 1.357e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.11537553121758 (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.08 us (2.1%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 218.57 us (91.8%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (56.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 | 5.8119e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.5393301886211 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 828.018732622 (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.74 us (3.2%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 217.08 us (89.9%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.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.1311e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.90116081818049 (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.58 us (2.4%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 211.78 us (91.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.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.0659e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.48125823634766 (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.51 us (2.4%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 211.40 us (91.5%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (54.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.3654e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.00040102156773 (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.76 us (1.8%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 293.38 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.30 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.8552e+05 | 65536 | 2 | 1.350e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.65934181925188 (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 : 5.73 us (2.8%)
patch tree reduce : 2.26 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 187.23 us (90.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (54.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.2337e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.13395163142087 (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.52 us (2.4%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 206.00 us (91.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (55.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.5236e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.4434280154394 (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.44 us (2.4%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 205.44 us (91.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.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.3972e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.69169230276042 (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.43 us (2.4%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 203.35 us (91.4%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.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.7524e+05 | 65536 | 2 | 1.379e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.42089575747005 (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.56 us (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 221.39 us (89.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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 | 5.5594e+05 | 65536 | 2 | 1.179e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.98361517398922 (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.41 us (2.4%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 207.77 us (91.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 | 5.5949e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.75567140782647 (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.56 us (2.7%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 187.63 us (90.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (57.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 | 5.6601e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.1754206683623 (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.67 us (2.8%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 185.25 us (90.3%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (43.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 | 5.6243e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.3960204303638 (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.51 us (2.5%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 203.72 us (91.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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 | 5.6813e+05 | 65536 | 2 | 1.154e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.77464717066619 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 829.857045621 (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 : 7.69 us (3.3%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 214.71 us (90.8%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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 | 5.4803e+05 | 65536 | 2 | 1.196e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.2634984172577 (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.60 us (2.7%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 189.07 us (90.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.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 | 5.5407e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.5768727786462 (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 : 6.05 us (2.7%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 201.28 us (90.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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 | 5.6332e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.59075781631363 (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.07 us (2.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 191.83 us (90.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.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 | 5.4792e+05 | 65536 | 2 | 1.196e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.23971105305596 (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 : 5.71 us (2.5%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 204.21 us (91.0%)
LB move op cnt : 0
LB apply : 3.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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 | 5.4581e+05 | 65536 | 2 | 1.201e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.77852224286339 (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 : 5.52 us (2.5%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 197.82 us (91.1%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.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 | 5.5305e+05 | 65536 | 2 | 1.185e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.3542898239027 (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.66 us (2.6%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 193.85 us (90.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.9168e+05 | 65536 | 2 | 1.333e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.99953959475005 (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.64 us (2.3%)
patch tree reduce : 2.52 us (1.0%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 221.18 us (91.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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 | 5.5240e+05 | 65536 | 2 | 1.186e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.2135141670118 (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.67 us (2.5%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 209.28 us (91.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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.0166e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.41036561628924 (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.12 us (2.1%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 222.02 us (92.2%)
LB move op cnt : 0
LB apply : 2.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (55.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.9006e+05 | 65536 | 2 | 1.680e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.88443458385574 (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.34 us (2.4%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 205.37 us (91.5%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (52.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.9528e+05 | 65536 | 2 | 1.658e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.02101134618232 (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 : 5.57 us (2.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 208.11 us (91.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (55.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.8315e+05 | 65536 | 2 | 1.710e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.38145790396382 (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.15 us (2.3%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 205.21 us (91.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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.0168e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.28134445074895 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 831.711597471 (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 13.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 : 3.62 us (51.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 : 12.90 us (3.0%)
patch tree reduce : 1.30 us (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 406.72 us (95.0%)
LB move op cnt : 0
LB apply : 2.55 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.15 us (2.6%)
patch tree reduce : 2.60 us (0.7%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 365.70 us (94.1%)
LB move op cnt : 0
LB apply : 2.73 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 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 | 2.6482e+05 | 65536 | 2 | 2.475e-01 | 0.0% | 1.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.9%)
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.15 us (0.4%)
LB compute : 286.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 : 1.38 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.1799e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.87523392113523 (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.90 us (1.8%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 300.09 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.15 us (58.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.1597e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.46818705021214 (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.75 us (2.1%)
patch tree reduce : 2.34 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 252.63 us (92.7%)
LB move op cnt : 0
LB apply : 3.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.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.2891e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.06504741246908 (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.42 us (2.1%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 243.22 us (92.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (56.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.1758e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.79302608453091 (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.52 us (2.2%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 228.18 us (91.8%)
LB move op cnt : 0
LB apply : 3.55 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.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.3757e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.80245968464617 (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.53 us (1.8%)
patch tree reduce : 2.36 us (0.8%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 285.93 us (93.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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.1529e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.33203649335826 (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.51 us (2.4%)
patch tree reduce : 2.37 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 205.81 us (91.1%)
LB move op cnt : 0
LB apply : 3.55 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (51.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.2034e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.34657861725597 (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.49 us (2.4%)
patch tree reduce : 2.35 us (1.1%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 204.69 us (91.3%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (53.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.1392e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.05811525135213 (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.22 us (1.9%)
patch tree reduce : 2.43 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 253.79 us (92.7%)
LB move op cnt : 0
LB apply : 2.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.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.1522e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.31958204264429 (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.52 us (2.3%)
patch tree reduce : 2.27 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 224.36 us (91.9%)
LB move op cnt : 0
LB apply : 3.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.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.3078e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.44055319670508 (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.51 us (2.4%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 212.52 us (91.2%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.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.1430e+05 | 65536 | 2 | 1.582e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.134560096961 (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.65 us (2.2%)
patch tree reduce : 2.46 us (1.0%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 237.41 us (92.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.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.2270e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.81917490429633 (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 (2.7%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 199.91 us (90.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (53.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.2985e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.25425285383415 (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.69 us (2.1%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 244.80 us (92.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (54.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.2038e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.35460878622254 (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.90 us (2.4%)
patch tree reduce : 2.21 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 221.55 us (91.7%)
LB move op cnt : 0
LB apply : 2.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (55.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.3057e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.39910397708309 (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.59 us (2.6%)
patch tree reduce : 2.42 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 192.09 us (90.6%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (54.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.3194e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.67460025667991 (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.39 us (2.6%)
patch tree reduce : 2.19 us (1.1%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 188.12 us (90.6%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (52.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.2182e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.64212613996023 (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.66 us (2.7%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 188.56 us (90.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (49.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.2466e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.21244967323415 (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.54 us (1.9%)
patch tree reduce : 2.24 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 274.08 us (93.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 4.0928e+05 | 65536 | 2 | 1.601e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.1276544293425 (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.97 us (2.1%)
patch tree reduce : 2.38 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 260.23 us (92.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.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.1403e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.0789986632862 (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.66 us (1.9%)
patch tree reduce : 2.24 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 273.79 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.24 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.9760e+05 | 65536 | 2 | 1.648e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.78352449634805 (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.32 us (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 208.30 us (91.3%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.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.2998e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.28052817094489 (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.75 us (2.5%)
patch tree reduce : 2.22 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 214.31 us (91.4%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.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.2945e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.17396257591453 (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.65 us (2.4%)
patch tree reduce : 2.36 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 210.32 us (91.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.2859e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.00139534947907 (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.52 us (2.2%)
patch tree reduce : 2.46 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 217.56 us (87.0%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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.2890e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.06329289057533 (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.42 us (2.3%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 212.61 us (91.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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 | 4.3614e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.51605722420115 (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.33 us (2.2%)
patch tree reduce : 2.27 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 222.49 us (91.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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 | 4.3555e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.39911247303196 (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.53 us (2.5%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 198.38 us (91.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.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.2236e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.75084169149035 (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.99 us (2.5%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 223.43 us (91.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.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.2052e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.38282496770208 (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.40 us (2.6%)
patch tree reduce : 2.31 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 186.85 us (90.5%)
LB move op cnt : 0
LB apply : 3.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.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.2980e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.24355094383603 (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.41 us (2.6%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 191.91 us (90.9%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.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.3290e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.86693434948648 (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.81 us (2.6%)
patch tree reduce : 2.36 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 199.44 us (90.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.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.2968e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.22020252062065 (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.80 us (2.4%)
patch tree reduce : 2.23 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 219.72 us (91.3%)
LB move op cnt : 0
LB apply : 3.65 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.3624e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.53652977096205 (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.46 us (2.1%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 243.56 us (92.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.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.3209e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.70453873743945 (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.33 us (2.3%)
patch tree reduce : 2.20 us (0.8%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 250.09 us (92.3%)
LB move op cnt : 0
LB apply : 3.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.0074e+05 | 65536 | 2 | 1.635e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.41387463010206 (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.95 us (2.8%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 193.97 us (90.5%)
LB move op cnt : 0
LB apply : 2.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (55.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.2014e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.30539461484749 (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.66 us (2.4%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 212.80 us (91.3%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.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.2078e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.43521421383264 (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.87 us (2.7%)
patch tree reduce : 2.39 us (1.1%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 193.44 us (90.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (55.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.2903e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.08884162275125 (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 : 6.09 us (2.6%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.40 us (0.6%)
LB compute : 209.55 us (91.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (57.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.2581e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.44407105598914 (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 (2.5%)
patch tree reduce : 2.40 us (1.0%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.61 us (0.7%)
LB compute : 214.80 us (91.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.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.2272e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.82291101984049 (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.63 us (2.5%)
patch tree reduce : 2.34 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 205.33 us (91.2%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.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.3333e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.95323720246138 (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.48 us (2.5%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 198.91 us (91.0%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (56.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.2676e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.63500342143294 (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.72 us (2.7%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 195.21 us (90.5%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.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.2309e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.89734899711893 (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.12 us (2.2%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 209.98 us (91.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.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.3815e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.91947897557937 (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.75 us (2.6%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 199.87 us (90.8%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.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.4988e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.27324065845423 (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.66 us (2.4%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 214.22 us (91.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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 | 4.3698e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.6845014650291 (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.50 us (2.4%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 212.55 us (91.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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.4650e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.59520037241089 (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.32 us (2.0%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 241.17 us (92.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 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 | 5.0683e+05 | 65536 | 2 | 1.293e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.70225260613168 (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.68 us (2.8%)
patch tree reduce : 2.48 us (1.2%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 180.66 us (90.0%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.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 | 5.9755e+05 | 65536 | 2 | 1.097e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.90430698831626 (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.53 us (2.7%)
patch tree reduce : 2.36 us (1.2%)
gen split merge : 942.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 185.77 us (90.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.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 | 5.9897e+05 | 65536 | 2 | 1.094e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.1911350730274 (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 : 6.23 us (3.0%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 187.00 us (90.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (54.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.5004e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.30613893761168 (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.71 us (2.5%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 207.32 us (91.3%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.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.4450e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.19390161439468 (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.29 us (2.4%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 202.42 us (91.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (58.0%)
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.4479e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.25229723836316 (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.52 us (2.5%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 200.97 us (91.0%)
LB move op cnt : 0
LB apply : 3.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (51.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.4959e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.21545074543106 (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.51 us (2.5%)
patch tree reduce : 2.30 us (1.1%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 198.14 us (91.0%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.4%)
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.5723e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.74778495938621 (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 : 5.55 us (2.1%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 246.98 us (92.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (67.5%)
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 | 4.5236e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.77165512391738 (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 : 5.42 us (2.4%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 210.20 us (91.6%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.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 | 4.5609e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.51984564479528 (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.35 us (2.2%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 219.31 us (91.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.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.4647e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.58932245805147 (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 : 5.70 us (2.4%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 219.92 us (91.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (61.1%)
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 | 5.1808e+05 | 65536 | 2 | 1.265e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.95929613987033 (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.61 us (2.9%)
patch tree reduce : 2.19 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 174.66 us (89.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (52.4%)
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.9498e+05 | 65536 | 2 | 1.324e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.32322664870155 (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.53 us (2.4%)
patch tree reduce : 2.40 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 209.97 us (91.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (51.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 | 5.9395e+05 | 65536 | 2 | 1.103e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.18252269190283 (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.73 us (2.2%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 236.84 us (92.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.4%)
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 | 4.7623e+05 | 65536 | 2 | 1.376e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.56132010444753 (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.49 us (2.6%)
patch tree reduce : 2.33 us (1.1%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 194.37 us (90.7%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.6%)
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 | 5.8699e+05 | 65536 | 2 | 1.116e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.78694004341605 (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.58 us (2.4%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 212.34 us (91.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (52.8%)
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 | 5.3727e+05 | 65536 | 2 | 1.220e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.80864266407887 (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.57 us (2.5%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 204.34 us (91.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.2%)
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 | 6.0063e+05 | 65536 | 2 | 1.091e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.52372798048725 (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.26 us (2.2%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 215.17 us (91.7%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (51.4%)
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 | 4.7046e+05 | 65536 | 2 | 1.393e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.40367639244253 (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 : 5.74 us (2.6%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 204.66 us (91.2%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (55.3%)
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.5479e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.25799451580708 (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.30 us (2.3%)
patch tree reduce : 2.47 us (1.1%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 212.61 us (91.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (60.4%)
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 | 4.4464e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.22134981116358 (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.71 us (2.5%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 211.02 us (91.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (52.3%)
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 | 4.5414e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.12915097607359 (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.65 us (2.6%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 196.72 us (90.9%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.4%)
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.4529e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.35230857015682 (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.73 us (2.2%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 236.80 us (92.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (55.4%)
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 | 4.4763e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.8212144026945 (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.45 us (2.2%)
patch tree reduce : 2.34 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 230.90 us (92.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.2%)
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.5474e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.24800050546361 (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.74 us (2.5%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 206.34 us (91.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.6%)
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.5197e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.69296029928105 (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.92 us (2.6%)
patch tree reduce : 2.44 us (1.1%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 207.49 us (90.8%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (52.0%)
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.5517e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.33542453892798 (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.36 us (2.4%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 206.65 us (91.3%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (51.1%)
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.5503e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.30622232372455 (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.63 us (2.3%)
patch tree reduce : 2.48 us (1.0%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 222.34 us (91.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (58.5%)
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.2165e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.60913453966857 (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.78 us (2.6%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 202.99 us (91.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (52.7%)
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 | 4.2118e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.5139055054665 (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.38 us (1.9%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 263.40 us (93.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.4%)
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 | 4.2394e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.06829182938155 (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.53 us (2.3%)
patch tree reduce : 2.22 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 221.78 us (91.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (58.6%)
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 | 4.2426e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.13230839588412 (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 : 6.07 us (2.3%)
patch tree reduce : 2.36 us (0.9%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 238.91 us (92.1%)
LB move op cnt : 0
LB apply : 3.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.1%)
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 | 4.2042e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.36143796202992 (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.98 us (2.4%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 227.82 us (91.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.9%)
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 | 4.2547e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.37595981518983 (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.59 us (2.2%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 229.96 us (92.0%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (52.5%)
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.2303e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.8859438862788 (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 : 6.02 us (2.4%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 227.83 us (91.7%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.3%)
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.2745e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.7737381740912 (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.72 us (2.3%)
patch tree reduce : 2.34 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 227.02 us (91.7%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.0%)
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 | 4.2868e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.01906316432574 (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 : 6.05 us (2.5%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 217.58 us (91.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.7%)
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.3270e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.82605387615207 (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.53 us (2.4%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 205.58 us (91.1%)
LB move op cnt : 0
LB apply : 3.53 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.4%)
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.2340e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.96083894841513 (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.88 us (2.4%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 226.67 us (91.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (58.2%)
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.1064e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.39989780173869 (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 : 6.81 us (0.2%)
patch tree reduce : 2.28 us (0.1%)
gen split merge : 1.21 us (0.0%)
split / merge op : 0/0
apply split merge : 1.20 us (0.0%)
LB compute : 3.13 ms (99.3%)
LB move op cnt : 0
LB apply : 4.24 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (69.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 | 3.8209e+05 | 65536 | 2 | 1.715e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.67151686605023 (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 : 5.77 us (2.5%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 210.27 us (91.3%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.7%)
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.2776e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.83553861836742 (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.54 us (2.2%)
patch tree reduce : 2.12 us (0.8%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 234.33 us (92.2%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (53.8%)
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.2967e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.21909855279183 (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 : 5.78 us (2.2%)
patch tree reduce : 2.15 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 : 237.26 us (92.3%)
LB move op cnt : 0
LB apply : 3.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (53.8%)
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.2756e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.7957516757846 (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 : 6.07 us (2.2%)
patch tree reduce : 2.28 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 256.42 us (92.5%)
LB move op cnt : 0
LB apply : 3.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.5%)
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.3419e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.12585682735885 (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.57 us (2.2%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 234.40 us (92.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (56.9%)
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.2167e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.61223705956013 (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.78 us (2.4%)
patch tree reduce : 14.40 us (6.0%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 209.34 us (86.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.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.3063e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.41122832540982 (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 : 5.46 us (2.4%)
patch tree reduce : 2.40 us (1.0%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 209.32 us (90.9%)
LB move op cnt : 0
LB apply : 3.95 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (55.7%)
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.3341e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.96781407321963 (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 : 6.03 us (2.1%)
patch tree reduce : 2.39 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 265.20 us (92.9%)
LB move op cnt : 0
LB apply : 3.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.2%)
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.1196e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.66364632495824 (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.63 us (2.1%)
patch tree reduce : 2.20 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 244.77 us (92.2%)
LB move op cnt : 0
LB apply : 3.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (59.1%)
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.0941e+05 | 65536 | 2 | 1.601e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.15326460445102 (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.71 us (2.5%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 208.87 us (91.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (58.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.0910e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.09082063415148 (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.89 us (2.7%)
patch tree reduce : 2.32 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 199.42 us (90.7%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (58.6%)
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.2580e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.44150817926176 (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.51 us (2.4%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 210.28 us (91.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.3%)
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.2556e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.39323375742909 (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.72 us (2.3%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 228.16 us (91.9%)
LB move op cnt : 0
LB apply : 3.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (58.5%)
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.0737e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.74328754591808 (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.86 us (2.5%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 218.49 us (91.6%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (58.2%)
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.2126e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.53132203181727 (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.57 us (2.4%)
patch tree reduce : 2.21 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 214.18 us (91.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (62.6%)
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.2592e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.46523844184189 (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.54 us (2.3%)
patch tree reduce : 2.28 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 225.31 us (92.0%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (58.2%)
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.2297e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.87367634708127 (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.77 us (2.5%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 209.04 us (91.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (52.9%)
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.1070e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.41154489513231 (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.83 us (2.1%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 252.57 us (92.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.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.1773e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.82195471557615 (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.30 us (2.3%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 213.86 us (91.7%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.9%)
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.2518e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.31752615374828 (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.47 us (2.5%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 196.71 us (91.0%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (53.3%)
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.2681e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.64372419118126 (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.67 us (2.2%)
patch tree reduce : 2.38 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 242.94 us (92.4%)
LB move op cnt : 0
LB apply : 3.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (59.1%)
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.2046e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.3710116547655 (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.31 us (2.3%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 212.77 us (91.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.1%)
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.1358e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.98868285119103 (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.31 us (2.0%)
patch tree reduce : 2.40 us (0.9%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 241.15 us (92.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.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.2080e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.43825628706405 (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.57 us (2.2%)
patch tree reduce : 2.23 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 237.06 us (92.2%)
LB move op cnt : 0
LB apply : 3.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.4%)
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.5574e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.44887073524073 (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.70 us (2.6%)
patch tree reduce : 2.53 us (1.1%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 202.24 us (90.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.9%)
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.2425e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.12994315788542 (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.65 us (2.5%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 207.07 us (91.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.9%)
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.1309e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.8911262701567 (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.60 us (2.6%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 198.12 us (91.0%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (61.4%)
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.2750e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.78262294968306 (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 : 5.45 us (1.9%)
patch tree reduce : 2.24 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 263.00 us (93.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (61.3%)
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.1058e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.386686325008 (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.69 us (2.5%)
patch tree reduce : 2.36 us (1.1%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 204.43 us (91.0%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.7%)
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.2208e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.69450268689185 (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 (2.4%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 210.68 us (91.4%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.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.1240e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.7524017139276 (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 : 6.24 us (2.4%)
patch tree reduce : 2.28 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 240.82 us (92.1%)
LB move op cnt : 0
LB apply : 3.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (60.1%)
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.1894e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.06427598711726 (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.67 us (2.5%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 205.46 us (91.0%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.1%)
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.1209e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.69046162404685 (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 : 5.85 us (2.5%)
patch tree reduce : 2.43 us (1.0%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 216.11 us (91.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (61.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.3145e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.57542248814173 (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.45 us (2.2%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 224.84 us (91.8%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (54.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.1673e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.62202246554462 (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.72 us (2.5%)
patch tree reduce : 2.52 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 211.01 us (91.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.2%)
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.0659e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.58678510487876 (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.48 us (2.2%)
patch tree reduce : 2.21 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 230.83 us (92.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (59.1%)
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.0866e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.00205316090843 (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.30 us (2.3%)
patch tree reduce : 2.35 us (1.0%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 207.18 us (91.4%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (50.8%)
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.1082e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.4348165037789 (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.65 us (2.2%)
patch tree reduce : 2.21 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 233.97 us (91.9%)
LB move op cnt : 0
LB apply : 3.58 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (59.5%)
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.2624e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.53068501012797 (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.95 us (2.6%)
patch tree reduce : 2.59 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 209.16 us (91.0%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.9%)
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.1996e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.26972654235038 (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.53 us (2.4%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 207.36 us (91.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.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.2643e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.56749645036412 (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 : 5.31 us (2.4%)
patch tree reduce : 2.39 us (1.1%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 203.47 us (90.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (55.3%)
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.1803e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.88202930028743 (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.55 us (2.5%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 204.96 us (91.4%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (59.6%)
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.1394e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.0619232558103 (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 : 5.45 us (2.5%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 201.07 us (91.2%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.3%)
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.1618e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.51108531396768 (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.55 us (2.3%)
patch tree reduce : 13.37 us (5.6%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 208.48 us (86.8%)
LB move op cnt : 0
LB apply : 3.93 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.7%)
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.1877e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.03176349996438 (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.82 us (2.1%)
patch tree reduce : 2.34 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 253.18 us (92.4%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (61.0%)
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 | 4.1647e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.56902860362781 (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 : 5.24 us (2.3%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 205.83 us (91.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.6%)
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 | 4.2240e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.75985978180101 (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.79 us (2.4%)
patch tree reduce : 2.40 us (1.0%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 223.45 us (91.7%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (59.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 | 4.3237e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.76057309910522 (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.79 us (2.5%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 208.90 us (91.3%)
LB move op cnt : 0
LB apply : 2.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (58.7%)
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 | 4.3089e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.46262398004698 (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.73 us (2.6%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 200.54 us (90.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (53.2%)
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 | 4.2844e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.97243260363004 (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.92 us (2.7%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 200.93 us (90.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.2%)
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 | 4.1689e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.65379435730507 (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.61 us (2.3%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 219.42 us (91.8%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (62.0%)
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.1983e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.24322691107828 (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.65 us (2.5%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 204.39 us (91.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.4%)
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 | 4.3369e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.024736253708 (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.57 us (2.5%)
patch tree reduce : 2.36 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 202.41 us (91.1%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (53.4%)
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.3038e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.36090272361655 (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 : 5.68 us (2.5%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 210.70 us (91.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.6%)
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.2472e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.22488838736848 (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.52 us (2.4%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 210.79 us (91.5%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (60.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.2202e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.68365223899349 (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.38 us (2.1%)
patch tree reduce : 2.44 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 235.68 us (92.2%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (61.7%)
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 | 4.1953e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.18389110158125 (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.34 us (2.3%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 216.00 us (91.6%)
LB move op cnt : 0
LB apply : 3.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.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 | 4.2672e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.62675114731013 (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.95 us (2.6%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 209.22 us (91.2%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (64.0%)
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.2395e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.07014789466817 (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.71 us (2.2%)
patch tree reduce : 2.51 us (0.9%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 244.70 us (92.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.4%)
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 | 4.1192e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.65740660485861 (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.45 us (2.3%)
patch tree reduce : 2.35 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 221.72 us (91.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (63.4%)
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 | 4.1792e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.85960976549184 (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.60 us (2.3%)
patch tree reduce : 14.35 us (5.8%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 214.45 us (87.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 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 | 4.0734e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.7379589292419 (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.23 us (2.4%)
patch tree reduce : 2.31 us (1.1%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 195.82 us (91.0%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.6%)
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 | 4.2535e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.350602789123 (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.58 us (2.5%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 200.04 us (91.0%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (52.7%)
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 | 4.2223e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.72596531964743 (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.19 us (2.2%)
patch tree reduce : 12.93 us (5.5%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 207.14 us (87.4%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.9%)
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.9894e+05 | 65536 | 2 | 1.643e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.05209981208834 (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.55 us (2.3%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 217.95 us (90.8%)
LB move op cnt : 0
LB apply : 5.40 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (56.6%)
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 | 4.2853e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.98892732682918 (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.52 us (2.5%)
patch tree reduce : 2.44 us (1.1%)
gen split merge : 882.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 204.61 us (91.2%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (60.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 | 4.0787e+05 | 65536 | 2 | 1.607e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.8447326660717 (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.71 us (2.5%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 210.35 us (91.5%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.9%)
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 | 4.1769e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.81543334014485 (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.52 us (2.2%)
patch tree reduce : 2.30 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 226.62 us (91.9%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (53.0%)
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 | 4.1825e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.92743056884798 (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 : 5.59 us (2.4%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 216.54 us (91.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.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 | 4.1575e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.42563928307722 (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.95 us (2.4%)
patch tree reduce : 2.27 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 226.10 us (91.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.1%)
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 | 4.2066e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.40957653908531 (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.45 us (2.2%)
patch tree reduce : 2.26 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 224.55 us (91.8%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (59.1%)
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 | 4.3357e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.00167121937329 (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.63 us (2.1%)
patch tree reduce : 2.36 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 250.03 us (92.5%)
LB move op cnt : 0
LB apply : 3.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.2%)
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 | 4.3987e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.26552391145174 (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.71 us (2.6%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 200.55 us (90.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (51.5%)
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 | 4.4028e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.3484760262505 (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.97 us (2.7%)
patch tree reduce : 2.36 us (1.1%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 203.08 us (90.9%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (6.7%)
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 | 4.3737e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.76438285007723 (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.36 us (2.2%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 220.90 us (91.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.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 | 4.3485e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.25720073239592 (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.45 us (2.3%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 212.82 us (91.6%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (59.2%)
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 | 4.3936e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.16261953925395 (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.83 us (2.6%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 208.62 us (91.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.0%)
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 | 4.2625e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.53140688298045 (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.69 us (2.6%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 202.64 us (91.0%)
LB move op cnt : 0
LB apply : 3.50 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.9%)
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 | 4.3345e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.97671948836044 (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.30 us (2.4%)
patch tree reduce : 2.35 us (1.1%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 199.22 us (91.1%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.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.1954e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.18528500298515 (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.28 us (2.3%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 211.16 us (91.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.3%)
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.2125e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.52898733922653 (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.74 us (2.5%)
patch tree reduce : 2.46 us (1.1%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 213.34 us (91.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.4%)
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.2393e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.06732650799265 (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.59 us (2.3%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 223.68 us (91.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (59.7%)
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.3167e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.62022807015377 (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.79 us (2.5%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 215.43 us (91.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (50.5%)
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.2224e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.72767198687282 (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.37 us (2.3%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 217.22 us (91.9%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (53.4%)
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.3505e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.29804249976063 (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.54 us (2.1%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 238.96 us (92.4%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (63.4%)
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.3225e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.73598385514663 (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 : 6.01 us (2.7%)
patch tree reduce : 2.33 us (1.1%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 201.00 us (90.8%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (56.9%)
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.3364e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.01604184006716 (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.64 us (2.3%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 226.22 us (91.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (55.9%)
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.2735e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.753801235566 (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.48 us (2.5%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 197.64 us (91.0%)
LB move op cnt : 0
LB apply : 2.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.7%)
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 | 4.3264e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.81592305301069 (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.36 us (2.2%)
patch tree reduce : 2.27 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 226.26 us (91.9%)
LB move op cnt : 0
LB apply : 3.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (56.6%)
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 | 4.3179e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.64496778221924 (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.69 us (2.6%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 199.45 us (91.1%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.4%)
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.3263e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.81348010571386 (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 : 16.62 us (7.3%)
patch tree reduce : 2.47 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 198.31 us (86.5%)
LB move op cnt : 0
LB apply : 2.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (59.0%)
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.3345e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.97751268381074 (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.58 us (2.4%)
patch tree reduce : 2.42 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 211.86 us (91.1%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (53.8%)
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.2231e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.74273894348532 (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 : 5.64 us (2.3%)
patch tree reduce : 2.40 us (1.0%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 219.90 us (91.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (60.2%)
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 | 5.4148e+05 | 65536 | 2 | 1.210e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.65636258537238 (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.22 us (2.2%)
patch tree reduce : 2.48 us (1.1%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 214.39 us (91.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (65.7%)
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 | 5.8604e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.59667021640736 (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.44 us (2.4%)
patch tree reduce : 2.45 us (1.1%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 207.06 us (91.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.6%)
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 | 5.8644e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.67736874777547 (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.53 us (2.6%)
patch tree reduce : 2.30 us (1.1%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 189.56 us (90.7%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (54.1%)
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 | 5.8526e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.44109393738486 (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.80 us (2.6%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 199.19 us (90.7%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (57.7%)
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 | 5.8603e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.59511353725716 (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.63 us (2.7%)
patch tree reduce : 2.40 us (1.2%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 186.80 us (90.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (58.7%)
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 | 6.0437e+05 | 65536 | 2 | 1.084e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.27597322375905 (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.93 us (2.4%)
patch tree reduce : 2.50 us (1.0%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 221.72 us (91.3%)
LB move op cnt : 0
LB apply : 3.68 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (60.5%)
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 | 5.9817e+05 | 65536 | 2 | 1.096e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.03189624787498 (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.56 us (2.7%)
patch tree reduce : 2.16 us (1.1%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 185.09 us (90.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (56.3%)
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 | 5.9966e+05 | 65536 | 2 | 1.093e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.33008394753777 (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.59 us (2.5%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 202.37 us (90.9%)
LB move op cnt : 0
LB apply : 3.67 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (52.4%)
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 | 5.2506e+05 | 65536 | 2 | 1.248e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.36096667133408 (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.62 us (2.5%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 12.25 us (5.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 194.28 us (86.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (62.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 | 5.9406e+05 | 65536 | 2 | 1.103e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.20785070338238 (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.34 us (2.3%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 209.21 us (91.6%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.6%)
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 | 5.8513e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.41676943976223 (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.52 us (2.2%)
patch tree reduce : 2.30 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 229.10 us (91.9%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.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 | 6.0817e+05 | 65536 | 2 | 1.078e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.04022893003474 (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.27 us (2.5%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 188.96 us (90.6%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (60.6%)
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 | 6.1871e+05 | 65536 | 2 | 1.059e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.1546004905213 (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 : 5.67 us (2.1%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 254.24 us (92.7%)
LB move op cnt : 0
LB apply : 3.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.0%)
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 | 6.1723e+05 | 65536 | 2 | 1.062e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.85675317237283 (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.45 us (2.4%)
patch tree reduce : 2.36 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 206.53 us (91.3%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (55.3%)
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 | 5.2973e+05 | 65536 | 2 | 1.237e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.29877191812939 (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.53 us (2.7%)
patch tree reduce : 2.31 us (1.1%)
gen split merge : 922.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 182.27 us (90.3%)
LB move op cnt : 0
LB apply : 2.98 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (54.0%)
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 | 5.2556e+05 | 65536 | 2 | 1.247e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.46335261488736 (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.65 us (2.6%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 198.39 us (91.0%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (51.7%)
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 | 6.0830e+05 | 65536 | 2 | 1.077e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.06581242411708 (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.42 us (2.3%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 220.24 us (91.8%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (61.4%)
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 | 5.0116e+05 | 65536 | 2 | 1.308e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.56611767400865 (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.69 us (2.5%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 211.31 us (91.2%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (55.4%)
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 | 6.0782e+05 | 65536 | 2 | 1.078e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.9699399522237 (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.72 us (2.7%)
patch tree reduce : 2.30 us (1.1%)
gen split merge : 982.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 191.71 us (90.6%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (59.5%)
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 | 6.0416e+05 | 65536 | 2 | 1.085e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.23599532548683 (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.80 us (2.2%)
patch tree reduce : 2.21 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 241.65 us (92.1%)
LB move op cnt : 0
LB apply : 3.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (60.6%)
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 | 5.8109e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.6076078759332 (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.82 us (2.5%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 210.36 us (91.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (56.2%)
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 | 5.7631e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.64735905408074 (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.57 us (2.7%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 991.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 186.65 us (90.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (57.2%)
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 | 5.9991e+05 | 65536 | 2 | 1.092e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.38462276654026 (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.44 us (2.6%)
patch tree reduce : 2.24 us (1.1%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 190.91 us (90.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.9%)
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 | 6.0399e+05 | 65536 | 2 | 1.085e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.20359405122906 (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.42 us (2.4%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 206.15 us (91.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (58.4%)
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 | 6.0452e+05 | 65536 | 2 | 1.084e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.30904711819802 (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 : 6.07 us (2.9%)
patch tree reduce : 2.35 us (1.1%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 186.74 us (90.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (52.9%)
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 | 5.8803e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.00047135466544 (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.28 us (2.3%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 212.89 us (91.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (61.0%)
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 | 5.9431e+05 | 65536 | 2 | 1.103e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.26097422224078 (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.56 us (2.8%)
patch tree reduce : 2.26 us (1.1%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 180.38 us (90.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (59.4%)
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 | 5.8621e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.63609670907891 (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.67 us (2.4%)
patch tree reduce : 2.37 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 219.28 us (91.7%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (60.9%)
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 | 5.9666e+05 | 65536 | 2 | 1.098e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.73306164325149 (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 : 5.53 us (0.8%)
patch tree reduce : 2.18 us (0.3%)
gen split merge : 1.14 us (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.2%)
LB compute : 678.03 us (97.0%)
LB move op cnt : 0
LB apply : 3.07 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (52.5%)
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 | 5.9312e+05 | 65536 | 2 | 1.105e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.0230428069138 (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.83 us (2.9%)
patch tree reduce : 2.29 us (1.1%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 183.43 us (89.8%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (58.3%)
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 | 5.9850e+05 | 65536 | 2 | 1.095e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.10278482900652 (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.91 us (2.6%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 210.14 us (91.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (59.6%)
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.4539e+05 | 65536 | 2 | 1.897e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.30980922290605 (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.93 us (2.6%)
patch tree reduce : 2.37 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 210.16 us (90.6%)
LB move op cnt : 0
LB apply : 3.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (52.2%)
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.1150e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.57690001010934 (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.30 us (2.4%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 204.31 us (91.4%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.9%)
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.0285e+05 | 65536 | 2 | 1.627e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.8419736687715 (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.57 us (2.2%)
patch tree reduce : 2.22 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 235.03 us (92.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.8%)
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.1492e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.26487262585104 (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.49 us (2.5%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 203.68 us (91.4%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.7%)
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.1634e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.54914981353673 (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.67 us (2.2%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 233.58 us (92.3%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (62.3%)
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.1423e+05 | 65536 | 2 | 1.582e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.12540451111799 (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 : 5.64 us (2.5%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 209.06 us (91.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.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.3059e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.40910079705222 (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.70 us (2.2%)
patch tree reduce : 2.28 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 234.20 us (92.0%)
LB move op cnt : 0
LB apply : 3.55 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.4%)
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.3355e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.00421666604038 (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 (2.5%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 206.88 us (91.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.3%)
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.2370e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.02799556064552 (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.52 us (2.4%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 214.87 us (91.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (52.7%)
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.3453e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.2004275372012 (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.66 us (2.5%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 204.99 us (91.2%)
LB move op cnt : 0
LB apply : 3.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (51.6%)
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.3083e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.45814278114324 (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 : 5.40 us (2.4%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 208.77 us (91.4%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.3%)
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 | 4.4138e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.57690838022495 (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.56 us (2.5%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 205.40 us (91.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.7%)
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 | 3.9607e+05 | 65536 | 2 | 1.655e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.48333896065496 (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.66 us (2.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 213.09 us (91.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (59.9%)
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 | 4.1898e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.08143874855182 (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.77 us (2.6%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 206.09 us (91.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (62.8%)
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.4084e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.46833315307813 (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.70 us (2.5%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 209.13 us (91.2%)
LB move op cnt : 0
LB apply : 3.51 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.1%)
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 | 4.4640e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.58450158484237 (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.07 us (2.1%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 223.41 us (91.9%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.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 | 4.3800e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.90096021335812 (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 : 5.29 us (2.2%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 215.93 us (91.7%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (58.2%)
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.2982e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.25919661784937 (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.59 us (2.0%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 262.18 us (92.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (61.1%)
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 | 4.2438e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.16701695943136 (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.49 us (2.2%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 232.83 us (92.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.7%)
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 | 4.3763e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.82743217117448 (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.25 us (2.3%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 209.66 us (91.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.1%)
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 | 4.3063e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.4229120540724 (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.65 us (2.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 223.27 us (91.7%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (59.4%)
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 | 4.2623e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.53976765042684 (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.33 us (2.2%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 222.43 us (92.0%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.7%)
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.3062e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.42193627520837 (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.41 us (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 212.56 us (91.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (59.8%)
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.0956e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.19550559360225 (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.42 us (2.5%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 199.41 us (91.2%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.4%)
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.3135e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.56941157702487 (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.45 us (2.3%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 221.16 us (91.9%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.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.2649e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.59403119180851 (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 : 5.27 us (2.3%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 213.63 us (91.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (59.7%)
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.2639e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.5739711756202 (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.58 us (2.4%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 211.97 us (91.6%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.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.1246e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.77905039599145 (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.45 us (2.2%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 230.90 us (92.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.9%)
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.1158e+05 | 65536 | 2 | 1.592e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.60376921700208 (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.42 us (2.5%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 200.99 us (91.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.3%)
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.1223e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.73361204854042 (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.97 us (2.5%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 217.59 us (91.7%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (58.5%)
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.3072e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.44540975428951 (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.59 us (2.4%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 212.60 us (91.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.0%)
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.4198e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.70588254002604 (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.69 us (2.2%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 236.71 us (92.2%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (57.9%)
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.2492e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.28265602224447 (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.34 us (2.1%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 230.15 us (92.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (59.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 | 4.2802e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.90553433630461 (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.76 us (2.7%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.39 us (0.6%)
LB compute : 196.24 us (90.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (59.1%)
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 | 4.3488e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.28276176450647 (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.93 us (2.7%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 202.74 us (90.9%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (53.1%)
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 | 4.3372e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.04926995666953 (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 : 5.33 us (2.1%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 231.34 us (92.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (62.4%)
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.2641e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.5837549288343 (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.67 us (2.3%)
patch tree reduce : 2.22 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 221.52 us (91.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.6%)
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.1361e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.01552282116295 (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.37 us (2.2%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 220.42 us (91.9%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (58.8%)
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.2428e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.15714684266895 (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.51 us (2.2%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 234.95 us (92.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.2%)
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 | 4.2719e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.74124215495998 (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.85 us (2.3%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 234.20 us (92.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.0%)
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 | 4.2508e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.31928101275858 (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.58 us (2.2%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 230.96 us (92.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (53.7%)
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 | 4.3256e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.82073514663783 (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.73 us (2.6%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 199.45 us (91.0%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.8%)
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 | 4.2265e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.83330523690917 (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.65 us (2.2%)
patch tree reduce : 2.32 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 235.09 us (92.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.1%)
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 | 4.3361e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.03257856601164 (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.49 us (2.4%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 211.53 us (91.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (54.8%)
Info: cfl dt = 0.0036540239620475234 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.93395358123698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9351803966902205, dt = 0.0036540239620475234
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 219.39 us (91.7%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.6%)
Info: cfl dt = 0.0036540558053861447 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2926e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.16111396065565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.938834420652268, dt = 0.0036540558053861447
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 198.48 us (90.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (55.4%)
Info: cfl dt = 0.0036540883223154337 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2977e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.26391429406078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9424884764576541, dt = 0.0036540883223154337
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 223.75 us (91.8%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (59.5%)
Info: cfl dt = 0.0036541215207774903 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1925e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.1530652673026 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9461425647799695, dt = 0.0036541215207774903
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 198.56 us (91.0%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.9%)
Info: cfl dt = 0.0036541554086959326 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.84913043610092 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.949796686300747, dt = 0.0036541554086959326
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 218.64 us (91.7%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (61.9%)
Info: cfl dt = 0.003654189993974506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2267e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.84247014505111 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9534508417094429, dt = 0.003654189993974506
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 242.92 us (92.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.4%)
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 | 4.2319e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.9464992108919 (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.75 us (2.6%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 199.67 us (90.7%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.3%)
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 | 4.3391e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.10030959068071 (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.79 us (2.6%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 199.35 us (90.7%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.3%)
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 | 4.3199e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.71517130822204 (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.49 us (2.4%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 209.74 us (91.5%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.5%)
Info: cfl dt = 0.0036543354659924468 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2713e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.74113617054054 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9680678162887139, dt = 0.0036543354659924468
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 213.20 us (91.7%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (62.6%)
Info: cfl dt = 0.003654373655836509 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2065e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.4415868627156 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9717221517547063, dt = 0.003654373655836509
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 194.81 us (90.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (52.5%)
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 | 4.2437e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.18804492661714 (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.60 us (2.5%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 205.02 us (91.1%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.2%)
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 | 4.2758e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.83271530254395 (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.93 us (2.6%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 210.42 us (91.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.0%)
Info: cfl dt = 0.0036544927219814816 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1716e+05 | 65536 | 2 | 1.571e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.74345712854428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9826853902766318, dt = 0.0036544927219814816
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 215.13 us (91.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (61.5%)
Info: cfl dt = 0.003654533935221677 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.91118049735309 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9863398829986133, dt = 0.003654533935221677
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 232.93 us (92.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (61.9%)
Info: cfl dt = 0.003654575923472034 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.97373444378333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9899944169338349, dt = 0.003654575923472034
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 227.65 us (91.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (62.6%)
Info: cfl dt = 0.003654618694330835 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.95256551076115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.993648992857307, dt = 0.003654618694330835
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 209.82 us (91.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.7%)
Info: cfl dt = 0.003654662255361232 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2007e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.33079235963173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9973036115516378, dt = 0.003654662255361232
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 214.64 us (91.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (49.5%)
Info: cfl dt = 0.0036547066140901053 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1851e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.018296347799 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.000958273806999, dt = 0.0036547066140901053
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 202.02 us (91.2%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (61.7%)
Info: cfl dt = 0.0036547517780069535 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1004e+05 | 65536 | 2 | 1.598e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.31834920081116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0046129804210893, dt = 0.0036547517780069535
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 190.93 us (90.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (54.3%)
Info: cfl dt = 0.003654797754562791 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2496e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.31583115285417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0082677321990963, dt = 0.003654797754562791
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 213.16 us (91.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.2%)
Info: cfl dt = 0.0036548445511690843 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6993e+05 | 65536 | 2 | 1.772e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.26895735327211 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0119225299536592, dt = 0.0036548445511690843
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 236.10 us (92.4%)
LB move op cnt : 0
LB apply : 3.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (54.4%)
Info: cfl dt = 0.003654892175196696 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0428e+05 | 65536 | 2 | 1.621e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.16547114845565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0155773745048282, dt = 0.003654892175196696
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 229.31 us (92.1%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (58.8%)
Info: cfl dt = 0.0036549406339748533 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.27218234950176 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0192322666800249, dt = 0.0036549406339748533
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.28 us (0.9%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 243.56 us (92.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.6%)
Info: cfl dt = 0.003654989934790143 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.11433999149179 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0228872073139996, dt = 0.003654989934790143
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 231.91 us (92.1%)
LB move op cnt : 0
LB apply : 3.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (58.3%)
Info: cfl dt = 0.0036550400848855227 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1589e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.50000443738264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0265421972487898, dt = 0.0036550400848855227
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 209.37 us (91.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.9%)
Info: cfl dt = 0.0036550910914593558 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.44016763386409 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0301972373336754, dt = 0.0036550910914593558
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 221.37 us (92.1%)
LB move op cnt : 0
LB apply : 2.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.5%)
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 | 3.9144e+05 | 65536 | 2 | 1.674e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.5930083486934 (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.38 us (2.3%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 214.22 us (91.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (57.2%)
Info: cfl dt = 0.0036551957026072176 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.52926082275107 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0375074713867993, dt = 0.0036551957026072176
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.19 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 238.51 us (91.9%)
LB move op cnt : 0
LB apply : 3.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.6%)
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.0279e+05 | 65536 | 2 | 1.627e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.87443489347476 (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.73 us (2.3%)
patch tree reduce : 2.34 us (1.0%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 223.60 us (91.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (60.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.0591e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.50168482833118 (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.33 us (2.1%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 239.66 us (92.6%)
LB move op cnt : 0
LB apply : 2.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (54.5%)
Info: cfl dt = 0.0036553592202092605 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1263e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.8532797029363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0484732202356466, dt = 0.0036553592202092605
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.38 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 199.17 us (90.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (55.5%)
Info: cfl dt = 0.003655415514205894 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2084e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.50269214129011 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.052128579455856, dt = 0.003655415514205894
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 197.18 us (90.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (52.7%)
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.0947e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.22174368796928 (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.20 us (2.2%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 217.18 us (91.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.5%)
Info: cfl dt = 0.003655530825633815 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.01611443692597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0594394676838061, dt = 0.003655530825633815
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 209.01 us (91.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (61.0%)
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 | 4.3447e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.2429462823894 (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 : 5.48 us (2.5%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 201.57 us (91.2%)
LB move op cnt : 0
LB apply : 2.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.0%)
Info: cfl dt = 0.0036556498134416764 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.10674525585303 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0667505883660715, dt = 0.0036556498134416764
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 202.87 us (91.0%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.6%)
Info: cfl dt = 0.0036557107027142175 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.82102430220044 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0704062381795132, dt = 0.0036557107027142175
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 212.97 us (91.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (63.3%)
Info: cfl dt = 0.0036557725310449214 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.09198601775232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0740619488822274, dt = 0.0036557725310449214
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 191.89 us (90.6%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.6%)
Info: cfl dt = 0.003655835304974259 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1262e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.86234684904038 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0777177214132723, dt = 0.003655835304974259
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.32 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 227.01 us (91.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (64.3%)
Info: cfl dt = 0.0036558990309868223 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.40509529321577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0813735567182465, dt = 0.0036558990309868223
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 196.82 us (90.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (43.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 | 4.2575e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.50190062776575 (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.74 us (2.4%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 220.05 us (91.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.7%)
Info: cfl dt = 0.003656029364916674 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.39905492123161 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.088685419464744, dt = 0.003656029364916674
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.17 us (0.8%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 256.32 us (92.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (53.3%)
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.3331e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.0231183431646 (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.42 us (2.2%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 222.30 us (91.9%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.8%)
Info: cfl dt = 0.003656163583569298 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.01484096000992 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0959975448151784, dt = 0.003656163583569298
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 206.10 us (91.1%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (58.0%)
Info: cfl dt = 0.0036562321652664717 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1992e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.33729757913058 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0996537083987477, dt = 0.0036562321652664717
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 218.94 us (91.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (56.1%)
Info: cfl dt = 0.0036563017367458144 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1961e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.2761506438838 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.103309940564014, dt = 0.0036563017367458144
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.17 us (0.8%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 239.37 us (92.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (58.2%)
Info: cfl dt = 0.003656372304083627 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.27942965128808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.10696624230076, dt = 0.003656372304083627
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.23 us (0.9%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 220.89 us (91.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.6%)
Info: cfl dt = 0.0036564438732956785 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.54174890537672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1106226146048437, dt = 0.0036564438732956785
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.21 us (0.9%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 234.12 us (92.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.7%)
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.4020e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.41630814894012 (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 : 5.40 us (2.2%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 222.35 us (91.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.4%)
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.5627e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.64486632435268 (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.58 us (2.3%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 219.29 us (91.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (51.9%)
Info: cfl dt = 0.0036566646514166806 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5872e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.1388620260699 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.121592164969576, dt = 0.0036566646514166806
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.62 us (6.7%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 215.02 us (87.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (61.0%)
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.6036e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.47129117529944 (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.06 us (2.2%)
patch tree reduce : 2.44 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 203.46 us (90.4%)
LB move op cnt : 0
LB apply : 4.65 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (59.5%)
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.6151e+05 | 65536 | 2 | 1.420e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.70454844963561 (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.42 us (2.0%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 247.43 us (92.7%)
LB move op cnt : 0
LB apply : 3.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (60.7%)
Info: cfl dt = 0.0036568946570620653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7869e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.24379455617161 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1325623868617716, dt = 0.0036568946570620653
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 201.33 us (91.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.1%)
Info: cfl dt = 0.0036569734026513246 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7120e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.74232680354261 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1362192815188337, dt = 0.0036569734026513246
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 211.16 us (91.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (58.8%)
Info: cfl dt = 0.0036570531960063274 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8595e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.70822119515115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.139876254921485, dt = 0.0036570531960063274
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 247.77 us (92.0%)
LB move op cnt : 0
LB apply : 5.35 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (55.9%)
Info: cfl dt = 0.00365713404257801 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7702e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.91631513214959 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1435333081174912, dt = 0.00365713404257801
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 206.34 us (91.1%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (74.0%)
Info: cfl dt = 0.0036572159477526543 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8109e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.73643064571029 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1471904421600692, dt = 0.0036572159477526543
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 991.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 186.38 us (90.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.5%)
Info: cfl dt = 0.003657298916851571 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8409e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.34139356940035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1508476581078217, dt = 0.003657298916851571
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (3.0%)
patch tree reduce : 2.07 us (1.1%)
gen split merge : 1.26 us (0.7%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 173.32 us (89.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (50.2%)
Info: cfl dt = 0.0036573829551308067 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7012e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.53845455463414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1545049570246733, dt = 0.0036573829551308067
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 200.19 us (91.1%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (57.1%)
Info: cfl dt = 0.003657468067780858 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6864e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.24245680622239 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.158162339979804, dt = 0.003657468067780858
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.6%)
LB compute : 180.79 us (90.2%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (56.5%)
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 | 5.8815e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.16649556003117 (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 : 16.89 us (7.6%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 191.61 us (86.2%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.3%)
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 | 5.8200e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.93217139274849 (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.59 us (2.5%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 204.89 us (91.4%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.0%)
Info: cfl dt = 0.003657729902872152 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8273e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.08323636960783 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1691350038441373, dt = 0.003657729902872152
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 179.34 us (90.2%)
LB move op cnt : 0
LB apply : 3.47 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.9%)
Info: cfl dt = 0.0036578193635904777 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9294e+05 | 65536 | 2 | 1.105e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.13627540096351 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1727927337470094, dt = 0.0036578193635904777
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 180.69 us (90.4%)
LB move op cnt : 0
LB apply : 2.93 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (75.8%)
Info: cfl dt = 0.0036579099236401257 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9479e+05 | 65536 | 2 | 1.102e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.51057155485896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1764505531106, dt = 0.0036579099236401257
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 209.24 us (91.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (60.1%)
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 | 5.7925e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.39226400800253 (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.66 us (2.5%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 210.01 us (91.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.9%)
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 | 5.7134e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.80576995624935 (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.66 us (2.4%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 212.01 us (91.5%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (58.2%)
Info: cfl dt = 0.003658188247363279 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5332e+05 | 65536 | 2 | 1.184e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.18598694707869 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1874245589828887, dt = 0.003658188247363279
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.21 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 213.13 us (87.2%)
LB move op cnt : 0
LB apply : 2.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (61.8%)
Info: cfl dt = 0.003658283251988493 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8760e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.0777761774135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1910827472302519, dt = 0.003658283251988493
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 237.19 us (92.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (58.1%)
Info: cfl dt = 0.0036583793792336703 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0738e+05 | 65536 | 2 | 1.079e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.05640958360543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1947410304822403, dt = 0.0036583793792336703
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 892.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 195.37 us (91.0%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.1%)
Info: cfl dt = 0.0036584766335541817 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0364e+05 | 65536 | 2 | 1.086e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.30886514803156 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.198399409861474, dt = 0.0036584766335541817
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.10 us (0.6%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 178.50 us (90.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (61.3%)
Info: cfl dt = 0.0036585750193376763 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9611e+05 | 65536 | 2 | 1.099e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.79723244117926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2020578864950282, dt = 0.0036585750193376763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.2%)
patch tree reduce : 2.56 us (1.1%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 214.54 us (90.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (60.8%)
Info: cfl dt = 0.0036586745409039993 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0872e+05 | 65536 | 2 | 1.077e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.3359274943782 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2057164615143658, dt = 0.0036586745409039993
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 194.15 us (90.9%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (59.5%)
Info: cfl dt = 0.0036587752025051146 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0850e+05 | 65536 | 2 | 1.077e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.29502366076036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2093751360552698, dt = 0.0036587752025051146
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 211.32 us (91.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (49.0%)
Info: cfl dt = 0.003658877008325049 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9627e+05 | 65536 | 2 | 1.099e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.84006485228896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2130339112577748, dt = 0.003658877008325049
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 203.38 us (91.0%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (59.5%)
Info: cfl dt = 0.003658979962479841 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3239e+05 | 65536 | 2 | 1.231e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.00380635652095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2166927882660998, dt = 0.003658979962479841
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 205.65 us (91.2%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.5%)
Info: cfl dt = 0.00365908406901751 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0004e+05 | 65536 | 2 | 1.092e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.60517703539956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2203517682285796, dt = 0.00365908406901751
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 188.21 us (90.8%)
LB move op cnt : 0
LB apply : 2.91 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (53.5%)
Info: cfl dt = 0.003659189331918033 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1383e+05 | 65536 | 2 | 1.068e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.37925979449098 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2240108522975972, dt = 0.003659189331918033
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 186.58 us (90.7%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (52.5%)
Info: cfl dt = 0.0036592957550933324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1185e+05 | 65536 | 2 | 1.071e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.98586081129366 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2276700416295152, dt = 0.0036592957550933324
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 202.76 us (91.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (61.7%)
Info: cfl dt = 0.0036594033423872885 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1409e+05 | 65536 | 2 | 1.067e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.43816794588494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2313293373846086, dt = 0.0036594033423872885
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 191.04 us (90.4%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (54.9%)
Info: cfl dt = 0.0036595120975757393 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9757e+05 | 65536 | 2 | 1.097e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.12107648070324 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.234988740726996, dt = 0.0036595120975757393
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 185.39 us (90.3%)
LB move op cnt : 0
LB apply : 3.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (60.7%)
Info: cfl dt = 0.0036596220243665218 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9368e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.34349059806607 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2386482528245717, dt = 0.0036596220243665218
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.8%)
patch tree reduce : 2.16 us (1.1%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 183.09 us (90.3%)
LB move op cnt : 0
LB apply : 3.18 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.3%)
Info: cfl dt = 0.0036597331263995 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8776e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.15741252701318 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2423078748489382, dt = 0.0036597331263995
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 217.34 us (91.7%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.2%)
Info: cfl dt = 0.0036598454072466167 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9013e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.63695197354748 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2459676079753377, dt = 0.0036598454072466167
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 197.01 us (91.1%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (53.9%)
Info: cfl dt = 0.003659958870411956 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9747e+05 | 65536 | 2 | 1.097e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.11691897744073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2496274533825842, dt = 0.003659958870411956
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 185.66 us (90.6%)
LB move op cnt : 0
LB apply : 3.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (54.5%)
Info: cfl dt = 0.0036600735193318104 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9594e+05 | 65536 | 2 | 1.100e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.81161660771201 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2532874122529962, dt = 0.0036600735193318104
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 185.80 us (90.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.9%)
Info: cfl dt = 0.003660189357374763 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9091e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.80449650833977 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.256947485772328, dt = 0.003660189357374763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 201.73 us (91.1%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.5%)
Info: cfl dt = 0.0036603063878417825 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8677e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.9754755190332 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2606076751297026, dt = 0.0036603063878417825
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.26 us (1.1%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 185.51 us (90.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.6%)
Info: cfl dt = 0.0036604246139663186 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9900e+05 | 65536 | 2 | 1.094e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.43891994114941 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2642679815175444, dt = 0.0036604246139663186
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 189.26 us (90.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (57.1%)
Info: cfl dt = 0.0036605440389144233 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9352e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.34040063292655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2679284061315108, dt = 0.0036605440389144233
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 229.71 us (91.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.1%)
Info: cfl dt = 0.0036606646657848635 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9957e+05 | 65536 | 2 | 1.093e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.56081668812799 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2715889501704252, dt = 0.0036606646657848635
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 191.43 us (90.6%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.6%)
Info: cfl dt = 0.0036607864976092564 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0411e+05 | 65536 | 2 | 1.085e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.47824791909031 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.27524961483621, dt = 0.0036607864976092564
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 216.93 us (91.6%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (53.8%)
Info: cfl dt = 0.0036609095373522113 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0380e+05 | 65536 | 2 | 1.085e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.419765332395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2789104013338193, dt = 0.0036609095373522113
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 199.01 us (90.9%)
LB move op cnt : 0
LB apply : 3.40 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (59.7%)
Info: cfl dt = 0.0036610337879114736 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3243e+05 | 65536 | 2 | 1.231e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.0705652599503 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2825713108711716, dt = 0.0036610337879114736
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 200.65 us (91.2%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.3%)
Info: cfl dt = 0.0036611592521180927 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3431e+05 | 65536 | 2 | 1.227e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.45364735736268 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.286232344659083, dt = 0.0036611592521180927
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 218.55 us (91.8%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.3%)
Info: cfl dt = 0.0036612859327365796 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2372e+05 | 65536 | 2 | 1.251e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.32639784072802 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2898935039112012, dt = 0.0036612859327365796
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 187.50 us (90.6%)
LB move op cnt : 0
LB apply : 2.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.9%)
Info: cfl dt = 0.0036614138324650852 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.04887426251149 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2935547898439377, dt = 0.0036614138324650852
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.28 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 249.78 us (92.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.8%)
Info: cfl dt = 0.003661542953935591 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6436e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.50750613431777 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2972162036764028, dt = 0.003661542953935591
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 189.64 us (90.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.3%)
Info: cfl dt = 0.0036616732997140937 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.91080332483764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3008777466303383, dt = 0.0036616732997140937
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.26 us (0.9%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 233.71 us (92.1%)
LB move op cnt : 0
LB apply : 3.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (62.5%)
Info: cfl dt = 0.0036618048723008087 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.58600465653204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3045394199300524, dt = 0.0036618048723008087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 243.47 us (92.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.1%)
Info: cfl dt = 0.0036619376741303775 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.83240403124088 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3082012248023531, dt = 0.0036619376741303775
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 19.67 us (8.1%)
patch tree reduce : 2.34 us (1.0%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 209.38 us (86.0%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (59.0%)
Info: cfl dt = 0.0036620717075720823 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.49103694576579 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3118631624764836, dt = 0.0036620717075720823
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 198.01 us (90.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (59.3%)
Info: cfl dt = 0.00366220697493007 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4206e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.92632807398215 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3155252341840558, dt = 0.00366220697493007
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 220.46 us (91.9%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.7%)
Info: cfl dt = 0.0036623434784435827 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.68490106571485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.319187441158986, dt = 0.0036623434784435827
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 203.60 us (91.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (58.1%)
Info: cfl dt = 0.0036624812202871947 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.05826246681374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3228497846374294, dt = 0.0036624812202871947
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 194.41 us (90.7%)
LB move op cnt : 0
LB apply : 3.42 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (53.0%)
Info: cfl dt = 0.003662620202571054 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6301e+05 | 65536 | 2 | 1.415e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.15031650063914 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3265122658577166, dt = 0.003662620202571054
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.12 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 234.92 us (92.3%)
LB move op cnt : 0
LB apply : 3.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (57.2%)
Info: cfl dt = 0.003662760427341136 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5378e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.29685708822875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3301748860602878, dt = 0.003662760427341136
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.29 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 204.14 us (86.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.8%)
Info: cfl dt = 0.0036629018965794995 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.02608636051987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.333837646487629, dt = 0.0036629018965794995
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.93 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 372.08 us (94.8%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (61.8%)
Info: cfl dt = 0.0036630446122045478 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6650e+05 | 65536 | 2 | 1.405e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.8650707475006 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3375005483842084, dt = 0.0036630446122045478
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 216.99 us (91.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (52.8%)
Info: cfl dt = 0.003663188576071303 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4518e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.57839334124098 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.341163592996413, dt = 0.003663188576071303
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 201.95 us (91.1%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.2%)
Info: cfl dt = 0.0036633337899716774 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.93980017814411 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3448267815724844, dt = 0.0036633337899716774
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 232.20 us (92.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.0%)
Info: cfl dt = 0.0036634802556347536 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.07361174956465 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.348490115362456, dt = 0.0036634802556347536
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 206.15 us (91.3%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (60.4%)
Info: cfl dt = 0.003663627974727076 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6193e+05 | 65536 | 2 | 1.419e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.95983595717557 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3521535956180908, dt = 0.003663627974727076
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 220.20 us (91.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (56.6%)
Info: cfl dt = 0.003663776948852941 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.60261597793465 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3558172235928179, dt = 0.003663776948852941
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 222.77 us (91.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.1%)
Info: cfl dt = 0.0036639271795546923 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.63538911493379 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3594810005416709, dt = 0.0036639271795546923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 203.23 us (91.4%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (55.7%)
Info: cfl dt = 0.0036640786683130263 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.35308524493126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3631449277212255, dt = 0.0036640786683130263
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 188.95 us (90.5%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (52.2%)
Info: cfl dt = 0.003664231416547298 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1685e+05 | 65536 | 2 | 1.268e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.02877125834472 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3668090063895386, dt = 0.003664231416547298
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 205.00 us (91.5%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (60.3%)
Info: cfl dt = 0.0036643854256158378 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7506e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.74992476800493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.370473237806086, dt = 0.0036643854256158378
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 186.08 us (90.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.2%)
Info: cfl dt = 0.003664540696816261 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0396e+05 | 65536 | 2 | 1.085e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.571734148056 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3741376232317017, dt = 0.003664540696816261
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 195.23 us (91.1%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (52.7%)
Info: cfl dt = 0.0036646972313857957 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7921e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.59553299121508 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.377802163928518, dt = 0.0036646972313857957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 185.17 us (90.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (56.7%)
Info: cfl dt = 0.0036648550305016076 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2308e+05 | 65536 | 2 | 1.052e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.4299165899995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.381466861159904, dt = 0.0036648550305016076
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.12 us (1.1%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 181.60 us (90.3%)
LB move op cnt : 0
LB apply : 3.14 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (52.7%)
Info: cfl dt = 0.0036650140952811275 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2116e+05 | 65536 | 2 | 1.055e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.05003393285274 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3851317161904055, dt = 0.0036650140952811275
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 216.68 us (91.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.3%)
Info: cfl dt = 0.003665174426782389 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8141e+05 | 65536 | 2 | 1.361e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.92031159482713 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3887967302856867, dt = 0.003665174426782389
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 235.88 us (92.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.7%)
Info: cfl dt = 0.003665336026004367 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.31729143585198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3924619047124691, dt = 0.003665336026004367
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 220.50 us (91.7%)
LB move op cnt : 0
LB apply : 3.68 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.3%)
Info: cfl dt = 0.0036654988938873145 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6080e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.7795071910444 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3961272407384735, dt = 0.0036654988938873145
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 241.67 us (92.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.4%)
Info: cfl dt = 0.003665663031313115 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5834e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.28731281951737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3997927396323608, dt = 0.003665663031313115
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 201.52 us (91.4%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.7%)
Info: cfl dt = 0.003665828439105628 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5891e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.40690581969214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.403458402663674, dt = 0.003665828439105628
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 199.60 us (91.1%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (51.2%)
Info: cfl dt = 0.003665995118031044 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7171e+05 | 65536 | 2 | 1.389e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.98827174190843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4071242311027796, dt = 0.003665995118031044
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.23 us (1.1%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 188.97 us (90.4%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.8%)
Info: cfl dt = 0.003666163068798235 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6133e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.03942476950793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4107902262208107, dt = 0.003666163068798235
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 187.94 us (90.5%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (60.5%)
Info: cfl dt = 0.003666332292059122 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0606e+05 | 65536 | 2 | 1.081e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.05387071213731 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.414456389289609, dt = 0.003666332292059122
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.8%)
patch tree reduce : 2.11 us (1.1%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 181.55 us (90.3%)
LB move op cnt : 0
LB apply : 2.97 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (54.9%)
Info: cfl dt = 0.0036665027884090276 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0380e+05 | 65536 | 2 | 1.085e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.60315856723453 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.418122721581668, dt = 0.0036665027884090276
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 206.15 us (91.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.4%)
Info: cfl dt = 0.003666674558387052 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0093e+05 | 65536 | 2 | 1.091e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.03246922960369 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4217892243700772, dt = 0.003666674558387052
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 211.36 us (91.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.4%)
Info: cfl dt = 0.0036668476024764285 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0123e+05 | 65536 | 2 | 1.090e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.09809174031679 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4254558989284642, dt = 0.0036668476024764285
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 188.97 us (90.9%)
LB move op cnt : 0
LB apply : 2.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.3%)
Info: cfl dt = 0.003667021921104902 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0965e+05 | 65536 | 2 | 1.075e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.79886106434624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4291227465309406, dt = 0.003667021921104902
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 190.35 us (90.7%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (53.7%)
Info: cfl dt = 0.0036671975146451 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0636e+05 | 65536 | 2 | 1.081e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.14280413595837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4327897684520454, dt = 0.0036671975146451
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 186.36 us (90.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (58.5%)
Info: cfl dt = 0.003667374383414904 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0239e+05 | 65536 | 2 | 1.088e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.34916596173184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4364569659666906, dt = 0.003667374383414904
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 184.65 us (90.2%)
LB move op cnt : 0
LB apply : 3.40 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (58.8%)
Info: cfl dt = 0.0036675525276778347 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9757e+05 | 65536 | 2 | 1.097e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.38428165191215 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4401243403501054, dt = 0.0036675525276778347
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 186.02 us (90.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.2%)
Info: cfl dt = 0.0036677319476434243 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9579e+05 | 65536 | 2 | 1.100e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.03031760432813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4437918928777833, dt = 0.0036677319476434243
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 188.76 us (90.6%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.3%)
Info: cfl dt = 0.003667912643467601 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9553e+05 | 65536 | 2 | 1.100e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.9842238539971 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4474596248254268, dt = 0.003667912643467601
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 235.42 us (92.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (60.5%)
Info: cfl dt = 0.0036680946152530727 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8790e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.45354195751025 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4511275374688943, dt = 0.0036680946152530727
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 203.24 us (91.1%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (53.3%)
Info: cfl dt = 0.0036682778630497126 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9819e+05 | 65536 | 2 | 1.096e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.53250075587415 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4547956320841473, dt = 0.0036682778630497126
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.8%)
patch tree reduce : 2.22 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 176.52 us (90.0%)
LB move op cnt : 0
LB apply : 2.96 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.0%)
Info: cfl dt = 0.0036684623868549456 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2179e+05 | 65536 | 2 | 1.054e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.29359840296316 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.458463909947197, dt = 0.0036684623868549456
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 181.04 us (90.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (58.3%)
Info: cfl dt = 0.0036686481866141365 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4783e+05 | 65536 | 2 | 1.196e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.39599615747345 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.462132372334052, dt = 0.0036686481866141365
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 250.97 us (92.7%)
LB move op cnt : 0
LB apply : 3.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (61.5%)
Info: cfl dt = 0.003668835262220984 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1863e+05 | 65536 | 2 | 1.059e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.66969257645115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4658010205206662, dt = 0.003668835262220984
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1.99 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 180.58 us (90.1%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.6%)
Info: cfl dt = 0.0036690236135179057 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2204e+05 | 65536 | 2 | 1.054e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.36261956269698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4694698557828871, dt = 0.0036690236135179057
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.2%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 204.57 us (91.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.5%)
Info: cfl dt = 0.003669213240296439 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1846e+05 | 65536 | 2 | 1.060e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.64755785081019 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.473138879396405, dt = 0.003669213240296439
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 221.88 us (92.0%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.5%)
Info: cfl dt = 0.0036694041422976314 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6396e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.67024297333951 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4768080926367015, dt = 0.0036694041422976314
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 221.77 us (91.7%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.9%)
Info: cfl dt = 0.003669596319212431 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1446e+05 | 65536 | 2 | 1.067e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.85533152354554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.480477496778999, dt = 0.003669596319212431
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 213.04 us (91.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (56.5%)
Info: cfl dt = 0.0036697897706820964 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5377e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.62815061251237 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4841470930982115, dt = 0.0036697897706820964
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 218.39 us (91.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (58.2%)
Info: cfl dt = 0.003669984496298578 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9562e+05 | 65536 | 2 | 1.322e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.9101156328876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4878168828688936, dt = 0.003669984496298578
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 205.93 us (91.5%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (53.0%)
Info: cfl dt = 0.0036701804956049307 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1093e+05 | 65536 | 2 | 1.073e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.16339742385941 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4914868673651922, dt = 0.0036701804956049307
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 206.88 us (86.8%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.4%)
Info: cfl dt = 0.003670377768095702 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1397e+05 | 65536 | 2 | 1.067e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.78236686400841 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4951570478607972, dt = 0.003670377768095702
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 206.49 us (91.5%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (59.6%)
Info: cfl dt = 0.003670576313217337 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.0180e+05 | 65536 | 2 | 1.306e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.17294917111288 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.498827425628893, dt = 0.003670576313217337
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 216.77 us (91.7%)
LB move op cnt : 0
LB apply : 3.56 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.2%)
Info: cfl dt = 0.00367077613036858 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0824e+05 | 65536 | 2 | 1.077e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.64078368244934 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5024980019421104, dt = 0.00367077613036858
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 206.87 us (91.4%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (52.3%)
Info: cfl dt = 0.0036709772189008724 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2435e+05 | 65536 | 2 | 1.250e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.7314471828858 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5061687780724788, dt = 0.0036709772189008724
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 232.45 us (92.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (64.8%)
Info: cfl dt = 0.0036711795781187565 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9144e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.26555609781555 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5098397552913798, dt = 0.0036711795781187565
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 198.96 us (90.9%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (59.8%)
Info: cfl dt = 0.003671383207280273 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8634e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.24359925611277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5135109348694986, dt = 0.003671383207280273
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 196.01 us (90.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (58.9%)
Info: cfl dt = 0.00367158810559737 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8633e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.2471914097723 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.517182318076779, dt = 0.00367158810559737
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 228.16 us (91.9%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (58.5%)
Info: cfl dt = 0.0036717942722362977 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8243e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.4678625042268 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5208539061823763, dt = 0.0036717942722362977
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.21 us (1.1%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 188.13 us (90.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (61.0%)
Info: cfl dt = 0.003672001706318016 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9772e+05 | 65536 | 2 | 1.096e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.55823381020588 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5245257004546127, dt = 0.003672001706318016
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.14 us (1.1%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 183.20 us (90.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (50.0%)
Info: cfl dt = 0.003672210406918598 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8714e+05 | 65536 | 2 | 1.345e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.26013109405852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5281977021609308, dt = 0.003672210406918598
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.35 us (0.6%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 190.03 us (90.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (52.6%)
Info: cfl dt = 0.0036724203730696247 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.24975734654642 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5318699125678494, dt = 0.0036724203730696247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 189.01 us (90.5%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (53.8%)
Info: cfl dt = 0.0036726316037585982 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0501e+05 | 65536 | 2 | 1.083e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.04904510776687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.535542332940919, dt = 0.0036726316037585982
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 207.71 us (91.4%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: cfl dt = 0.0036728440979293337 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1728e+05 | 65536 | 2 | 1.062e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.53222051925611 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5392149645446775, dt = 0.0036728440979293337
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 203.59 us (91.0%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (60.9%)
Info: cfl dt = 0.0036730578544823707 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2138e+05 | 65536 | 2 | 1.055e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.3657830783654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5428878086426068, dt = 0.0036730578544823707
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 189.02 us (90.5%)
LB move op cnt : 0
LB apply : 2.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (57.9%)
Info: cfl dt = 0.0036732728722753687 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2224e+05 | 65536 | 2 | 1.053e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.54718119682224 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5465608664970891, dt = 0.0036732728722753687
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.23 us (1.1%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 180.81 us (90.1%)
LB move op cnt : 0
LB apply : 3.00 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (56.0%)
Info: cfl dt = 0.00367348915012351 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1095e+05 | 65536 | 2 | 1.073e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.27634446389561 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5502341393693646, dt = 0.00367348915012351
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.10 us (0.6%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 359.51 us (94.7%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.5%)
Info: cfl dt = 0.0036737066867999035 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1547e+05 | 65536 | 2 | 1.065e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.19570226572353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5539076285194882, dt = 0.0036737066867999035
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.12 us (1.1%)
gen split merge : 1.12 us (0.6%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 179.26 us (90.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (49.7%)
Info: cfl dt = 0.0036739254810359808 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7616e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.27119318130362 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5575813352062882, dt = 0.0036739254810359808
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.18 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.5%)
LB compute : 188.65 us (90.8%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (48.7%)
Info: cfl dt = 0.0036741455315219035 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9462e+05 | 65536 | 2 | 1.102e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.00237835458046 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5612552606873242, dt = 0.0036741455315219035
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 191.52 us (90.8%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (58.6%)
Info: cfl dt = 0.0036743668369069544 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2230e+05 | 65536 | 2 | 1.255e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.4149779954938 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5649294062188461, dt = 0.0036743668369069544
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.5%)
LB compute : 187.24 us (90.7%)
LB move op cnt : 0
LB apply : 3.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (59.4%)
Info: cfl dt = 0.003674589395799942 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9737e+05 | 65536 | 2 | 1.097e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.57331592049158 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5686037730557532, dt = 0.003674589395799942
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 205.21 us (90.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.9%)
Info: cfl dt = 0.003674813206769598 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2625e+05 | 65536 | 2 | 1.046e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.40953131625575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.572278362451553, dt = 0.003674813206769598
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 208.53 us (91.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (62.9%)
Info: cfl dt = 0.003675038268344974 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1901e+05 | 65536 | 2 | 1.059e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.95612187257137 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5759531756583227, dt = 0.003675038268344974
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 219.16 us (91.9%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.6%)
Info: cfl dt = 0.0036752645790158397 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2045e+05 | 65536 | 2 | 1.056e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.25418278619212 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5796282139266677, dt = 0.0036752645790158397
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.8%)
patch tree reduce : 2.10 us (1.1%)
gen split merge : 1.13 us (0.6%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 177.15 us (90.0%)
LB move op cnt : 0
LB apply : 3.06 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (53.2%)
Info: cfl dt = 0.0036754921372330785 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1237e+05 | 65536 | 2 | 1.070e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.63100187833666 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5833034785056836, dt = 0.0036754921372330785
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 190.90 us (90.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (70.8%)
Info: cfl dt = 0.003675720941409081 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5604e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.07576141374558 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5869789706429167, dt = 0.003675720941409081
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 208.35 us (91.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (56.5%)
Info: cfl dt = 0.0036759509899181413 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.76764344327144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5906546915843258, dt = 0.0036759509899181413
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 212.70 us (91.3%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (59.2%)
Info: cfl dt = 0.0036761822810968516 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2250e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.31394966146382 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.594330642574244, dt = 0.0036761822810968516
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 962.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 186.88 us (90.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (48.5%)
Info: cfl dt = 0.0036764148132444902 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9401e+05 | 65536 | 2 | 1.103e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.95329409667615 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.598006824855341, dt = 0.0036764148132444902
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (3.0%)
patch tree reduce : 2.30 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 188.50 us (90.1%)
LB move op cnt : 0
LB apply : 3.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.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 | 5.9963e+05 | 65536 | 2 | 1.093e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.09690724413026 (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 : 5.54 us (2.4%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 207.42 us (91.5%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (62.2%)
Info: cfl dt = 0.00367688359345946 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0012e+05 | 65536 | 2 | 1.092e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.20257671429458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6053598882532087, dt = 0.00367688359345946
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 187.42 us (90.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (53.7%)
Info: cfl dt = 0.003677119837942308 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9689e+05 | 65536 | 2 | 1.098e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.55824991565979 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6090367718466683, dt = 0.003677119837942308
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.28 us (1.2%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.7%)
LB compute : 176.49 us (89.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.0%)
Info: cfl dt = 0.0036773573162258966 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1349e+05 | 65536 | 2 | 1.068e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.91827131793472 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6127138916846107, dt = 0.0036773573162258966
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.09 us (1.1%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 177.14 us (89.8%)
LB move op cnt : 0
LB apply : 3.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.3%)
Info: cfl dt = 0.003677596026428796 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9474e+05 | 65536 | 2 | 1.102e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.13856081263705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6163912490008365, dt = 0.003677596026428796
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 197.29 us (91.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (61.4%)
Info: cfl dt = 0.003677835966634594 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0360e+05 | 65536 | 2 | 1.086e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.93715114160241 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6200688450272653, dt = 0.003677835966634594
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (3.0%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 992.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 185.15 us (90.2%)
LB move op cnt : 0
LB apply : 2.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.3%)
Info: cfl dt = 0.003678077134892282 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0326e+05 | 65536 | 2 | 1.086e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.87557578633643 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6237466809938998, dt = 0.003678077134892282
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 200.32 us (91.0%)
LB move op cnt : 0
LB apply : 3.45 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (58.7%)
Info: cfl dt = 0.0036783195292166377 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9309e+05 | 65536 | 2 | 1.105e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.8294069088412 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6274247581287922, dt = 0.0036783195292166377
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 203.93 us (91.3%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.2%)
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 | 5.8473e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.149107652629 (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 : 5.95 us (2.8%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 191.44 us (90.3%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.0%)
Info: cfl dt = 0.0036788079879556774 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9347e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.92234649552938 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6347816408055975, dt = 0.0036788079879556774
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 11.72 us (5.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 190.79 us (86.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (58.6%)
Info: cfl dt = 0.003679054048232272 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9233e+05 | 65536 | 2 | 1.106e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.70047466873775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6384604487935532, dt = 0.003679054048232272
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 234.23 us (92.0%)
LB move op cnt : 0
LB apply : 3.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (60.7%)
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 | 5.8597e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.42337790021027 (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.56 us (2.5%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 205.30 us (91.2%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.6%)
Info: cfl dt = 0.0036795498200085956 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8522e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.27833318004357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6458188041680857, dt = 0.0036795498200085956
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 196.03 us (90.8%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (54.5%)
Info: cfl dt = 0.003679799527175178 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9944e+05 | 65536 | 2 | 1.093e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.16197419423506 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6494983539880943, dt = 0.003679799527175178
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 201.10 us (86.4%)
LB move op cnt : 0
LB apply : 14.96 us (6.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (59.5%)
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 | 5.5682e+05 | 65536 | 2 | 1.177e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.55393809502566 (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.69 us (2.3%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 228.95 us (92.0%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (59.1%)
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 | 5.8182e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.61462420599592 (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.31 us (2.4%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 203.58 us (91.2%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.3%)
Info: cfl dt = 0.0036805559071266558 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7848e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.9481512005197 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6605385065338503, dt = 0.0036805559071266558
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 214.74 us (91.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (57.5%)
Info: cfl dt = 0.0036808104456742307 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8573e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.42268634586343 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.664219062440977, dt = 0.0036808104456742307
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 219.51 us (91.7%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.4%)
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 | 5.0771e+05 | 65536 | 2 | 1.291e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.656017699145 (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.42 us (2.3%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 211.85 us (91.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.7%)
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 | 5.7667e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.60725614034779 (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.87 us (2.8%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 190.49 us (90.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (57.8%)
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 | 5.8493e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.28488244184695 (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.55 us (2.5%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.42 us (0.6%)
LB compute : 200.11 us (90.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (52.7%)
Info: cfl dt = 0.0036818405968448652 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8564e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.43751708123963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.678943843463889, dt = 0.0036818405968448652
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 193.48 us (90.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.0%)
Info: cfl dt = 0.00368210112183163 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8953e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.23182912920974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6826256840607339, dt = 0.00368210112183163
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 189.90 us (90.6%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.4%)
Info: cfl dt = 0.0036823628367751065 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8894e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.12140258197003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6863077851825654, dt = 0.0036823628367751065
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.02 us (1.0%)
gen split merge : 1.37 us (0.7%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 190.65 us (90.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.8%)
Info: cfl dt = 0.0036826257391655635 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1691e+05 | 65536 | 2 | 1.268e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.56012147685644 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6899901480193404, dt = 0.0036826257391655635
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.8%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 177.49 us (89.9%)
LB move op cnt : 0
LB apply : 3.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (51.3%)
Info: cfl dt = 0.0036828898264656823 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7698e+05 | 65536 | 2 | 1.374e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.48965812033464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.693672773758506, dt = 0.0036828898264656823
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 197.99 us (90.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.5%)
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 | 6.2781e+05 | 65536 | 2 | 1.044e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.00969265103406 (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.54 us (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 205.15 us (91.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.5%)
Info: cfl dt = 0.003683421545509812 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6047e+05 | 65536 | 2 | 1.169e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.39535035868126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7010388186810825, dt = 0.003683421545509812
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 228.06 us (92.0%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (53.9%)
Info: cfl dt = 0.0036836891720444173 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1824e+05 | 65536 | 2 | 1.060e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.09190935128419 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7047222402265922, dt = 0.0036836891720444173
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 215.48 us (91.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (53.1%)
Info: cfl dt = 0.003683957973070568 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2988e+05 | 65536 | 2 | 1.237e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.22187208170439 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7084059293986367, dt = 0.003683957973070568
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 201.87 us (91.1%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (63.7%)
Info: cfl dt = 0.0036842279459182612 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1563e+05 | 65536 | 2 | 1.065e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.5834051896502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7120898873717072, dt = 0.0036842279459182612
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 204.01 us (91.0%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (66.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 | 6.1777e+05 | 65536 | 2 | 1.061e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.02392627914953 (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 : 5.83 us (2.6%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 205.49 us (91.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.9%)
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 | 6.2376e+05 | 65536 | 2 | 1.051e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.24643992661841 (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.45 us (2.4%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 202.91 us (91.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (62.0%)
Info: cfl dt = 0.0036850448683100924 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1953e+05 | 65536 | 2 | 1.058e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.39857024638164 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7231433858017884, dt = 0.0036850448683100924
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.22 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 187.54 us (90.3%)
LB move op cnt : 0
LB apply : 3.59 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.4%)
Info: cfl dt = 0.003685319501239004 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.78469393419603 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7268284306700985, dt = 0.003685319501239004
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 206.94 us (91.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (54.0%)
Info: cfl dt = 0.003685595292263714 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.43960330723131 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7305137501713375, dt = 0.003685595292263714
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 203.84 us (91.0%)
LB move op cnt : 0
LB apply : 3.57 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (61.3%)
Info: cfl dt = 0.0036858722385662845 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2976e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.00728224443847 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.734199345463601, dt = 0.0036858722385662845
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 202.69 us (90.7%)
LB move op cnt : 0
LB apply : 3.56 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (64.1%)
Info: cfl dt = 0.003686150337305292 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.18952025365373 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7378852177021673, dt = 0.003686150337305292
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 220.37 us (91.5%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (61.4%)
Info: cfl dt = 0.003686429585616156 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1037e+05 | 65536 | 2 | 1.284e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.34234731427273 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7415713680394727, dt = 0.003686429585616156
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 191.11 us (90.8%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (50.8%)
Info: cfl dt = 0.003686709980611467 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8941e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.356384419243 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7452577976250887, dt = 0.003686709980611467
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 224.96 us (92.0%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (63.5%)
Info: cfl dt = 0.0036869915193813094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1674e+05 | 65536 | 2 | 1.268e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.64882209326788 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7489445076057002, dt = 0.0036869915193813094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 217.50 us (91.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.9%)
Info: cfl dt = 0.0036872741989935854 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0348e+05 | 65536 | 2 | 1.086e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.22505650336794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7526314991250815, dt = 0.0036872741989935854
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 194.02 us (90.7%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (57.5%)
Info: cfl dt = 0.0036875580164943368 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2591e+05 | 65536 | 2 | 1.246e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.52188430028633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.756318773324075, dt = 0.0036875580164943368
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 224.80 us (91.5%)
LB move op cnt : 0
LB apply : 4.09 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (52.2%)
Info: cfl dt = 0.003687842968908062 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.03899321629198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7600063313405694, dt = 0.003687842968908062
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 221.79 us (91.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.1%)
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.3493e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.10719958724553 (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.25 us (2.3%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 210.12 us (91.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.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.3450e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.02792958866607 (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.57 us (2.1%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 250.38 us (92.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (60.0%)
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.3505e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.14551970526402 (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.53 us (2.4%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 212.54 us (91.7%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.1%)
Info: cfl dt = 0.0036889940674463746 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.72298417307485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7747594242347375, dt = 0.0036889940674463746
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 203.63 us (91.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.2%)
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.3071e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.27995033759255 (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.76 us (2.6%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 198.89 us (90.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.6%)
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.3907e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.98224011630535 (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.73 us (2.6%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 200.92 us (91.0%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (56.1%)
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 | 4.3776e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.72329939827051 (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 : 6.33 us (2.5%)
patch tree reduce : 2.53 us (1.0%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 232.46 us (91.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (60.1%)
Info: cfl dt = 0.0036901630811647605 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.39877746203808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7895171484575911, dt = 0.0036901630811647605
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 227.51 us (91.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.4%)
Info: cfl dt = 0.003690458110498368 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4664e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.53639476982242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.793207311538756, dt = 0.003690458110498368
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 203.64 us (91.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.1%)
Info: cfl dt = 0.0036907542438737746 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3843e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.87982478661472 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7968977696492543, dt = 0.0036907542438737746
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 204.20 us (91.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.0%)
Info: cfl dt = 0.003691051478098966 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.02003254820671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.800588523893128, dt = 0.003691051478098966
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 201.82 us (91.1%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.3%)
Info: cfl dt = 0.0036913498099640507 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.22585869982916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.804279575371227, dt = 0.0036913498099640507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 217.01 us (91.7%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (53.8%)
Info: cfl dt = 0.0036916492362415506 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.25484434426289 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.807970925181191, dt = 0.0036916492362415506
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.33 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 232.19 us (91.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (66.9%)
Info: cfl dt = 0.003691949753686692 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.21698026449491 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8116625744174326, dt = 0.003691949753686692
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 210.21 us (91.3%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (54.1%)
Info: cfl dt = 0.0036922513590376925 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4894e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.04766233988299 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8153545241711193, dt = 0.0036922513590376925
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 196.78 us (90.7%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (57.2%)
Info: cfl dt = 0.003692554049016047 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5071e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.41330422620405 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.819046775530157, dt = 0.003692554049016047
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 200.93 us (91.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (59.4%)
Info: cfl dt = 0.0036928578203268125 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5080e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.44032183095011 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.822739329579173, dt = 0.0036928578203268125
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 205.85 us (91.3%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (60.2%)
Info: cfl dt = 0.0036931626696588855 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.49140802538003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8264321873994998, dt = 0.0036931626696588855
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 237.68 us (92.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (60.1%)
Info: cfl dt = 0.003693468593685287 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.39424514775413 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8301253500691586, dt = 0.003693468593685287
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 205.06 us (91.3%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.9%)
Info: cfl dt = 0.003693775589063434 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.97576727402947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.833818818662844, dt = 0.003693775589063434
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 209.96 us (91.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.7%)
Info: cfl dt = 0.003694083652435418 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4166e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.61429942929522 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8375125942519073, dt = 0.003694083652435418
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.25 us (1.1%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 194.49 us (90.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.9%)
Info: cfl dt = 0.0036943927804282783 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.896916621048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8412066779043428, dt = 0.0036943927804282783
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 195.38 us (90.8%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (57.3%)
Info: cfl dt = 0.0036947029696542694 [amr::basegodunov][rank=0]
Info: Timestep perf 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.512e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.99052706898576 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.844901070684771, dt = 0.0036947029696542694
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 207.74 us (91.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (57.1%)
Info: cfl dt = 0.003695014216711134 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4496e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.30820107540013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8485957736544254, dt = 0.003695014216711134
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 203.42 us (91.3%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.7%)
Info: cfl dt = 0.003695326518182365 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.33243342318218 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8522907878711365, dt = 0.003695326518182365
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 205.40 us (91.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (60.7%)
Info: cfl dt = 0.0036956398706374798 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1868e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.98790390431131 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8559861143893188, dt = 0.0036956398706374798
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.37 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 205.31 us (91.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (52.6%)
Info: cfl dt = 0.0036959542706322675 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.71709536360297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8596817542599564, dt = 0.0036959542706322675
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 247.27 us (92.4%)
LB move op cnt : 0
LB apply : 3.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.7%)
Info: cfl dt = 0.003696269714709062 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2537e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.35970631103133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8633777085305887, dt = 0.003696269714709062
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 190.33 us (90.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.1%)
Info: cfl dt = 0.003696586199396999 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8198e+05 | 65536 | 2 | 1.716e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.55839678082829 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8670739782452979, dt = 0.003696586199396999
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 215.87 us (91.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (62.1%)
Info: cfl dt = 0.0036969037212122636 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8524e+05 | 65536 | 2 | 1.701e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.22613727472402 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8707705644446948, dt = 0.0036969037212122636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 213.58 us (91.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.4%)
Info: cfl dt = 0.0036972222766583564 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2654e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.61951783165073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.874467468165907, dt = 0.0036972222766583564
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.39 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 238.39 us (91.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.3%)
Info: cfl dt = 0.0036975418622263367 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2621e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.56012723213483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8781646904425653, dt = 0.0036975418622263367
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 192.50 us (90.8%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.2%)
Info: cfl dt = 0.003697862474395076 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.01508737059062 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8818622323047915, dt = 0.003697862474395076
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 218.79 us (91.8%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.2%)
Info: cfl dt = 0.0036981841096315085 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8185e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.19139581926578 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8855600947791866, dt = 0.0036981841096315085
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 195.82 us (91.0%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.0%)
Info: cfl dt = 0.0036985067643908716 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1021e+05 | 65536 | 2 | 1.074e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.96298017235229 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8892582788888181, dt = 0.0036985067643908716
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 244.82 us (92.6%)
LB move op cnt : 0
LB apply : 3.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.4%)
Info: cfl dt = 0.003698830435116956 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7129e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.06707853298421 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.892956785653209, dt = 0.003698830435116956
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 207.92 us (91.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (56.8%)
Info: cfl dt = 0.003699155118242342 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8905e+05 | 65536 | 2 | 1.340e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.36676021304763 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.896655616088326, dt = 0.003699155118242342
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 228.53 us (91.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (62.0%)
Info: cfl dt = 0.0036994808101886456 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9459e+05 | 65536 | 2 | 1.102e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.82069549182465 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9003547712065683, dt = 0.0036994808101886456
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 223.65 us (92.0%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (58.4%)
Info: cfl dt = 0.0036998075073667496 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1286e+05 | 65536 | 2 | 1.069e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.54395777935054 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.904054252016757, dt = 0.0036998075073667496
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 202.41 us (91.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.9%)
Info: cfl dt = 0.003700135206177044 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1153e+05 | 65536 | 2 | 1.072e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.28619806683939 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9077540595241236, dt = 0.003700135206177044
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 206.82 us (91.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (63.4%)
Info: cfl dt = 0.003700463903009661 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1931e+05 | 65536 | 2 | 1.058e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.87737070414029 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9114541947303005, dt = 0.003700463903009661
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 221.49 us (91.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.8%)
Info: cfl dt = 0.0037007935942447033 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1776e+05 | 65536 | 2 | 1.061e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.57343717653602 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9151546586333101, dt = 0.0037007935942447033
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 191.31 us (90.7%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (62.5%)
Info: cfl dt = 0.003701124276252473 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1490e+05 | 65536 | 2 | 1.066e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.00257377162383 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.918855452227555, dt = 0.003701124276252473
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.21 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 191.02 us (90.7%)
LB move op cnt : 0
LB apply : 2.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (54.2%)
Info: cfl dt = 0.003701455945393707 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1447e+05 | 65536 | 2 | 1.067e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.92657068921886 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9225565765038075, dt = 0.003701455945393707
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1.95 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 183.14 us (90.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (59.7%)
Info: cfl dt = 0.0037017885980197944 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0876e+05 | 65536 | 2 | 1.077e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.77833027661987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9262580324492011, dt = 0.0037017885980197944
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 188.26 us (90.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.3%)
Info: cfl dt = 0.0037021222304730057 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7734e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.39994273149904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9299598210472209, dt = 0.0037021222304730057
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.8%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 962.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 185.06 us (90.6%)
LB move op cnt : 0
LB apply : 2.98 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.7%)
Info: cfl dt = 0.0037024568390867144 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1534e+05 | 65536 | 2 | 1.065e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.1376185240115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9336619432776938, dt = 0.0037024568390867144
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 208.93 us (91.4%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.5%)
Info: cfl dt = 0.0037027924201856097 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.15149491283208 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9373644001167805, dt = 0.0037027924201856097
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 189.59 us (90.6%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (53.8%)
Info: cfl dt = 0.0037031289700859295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2255e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.94674313821417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.941067192536966, dt = 0.0037031289700859295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 225.80 us (91.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (58.8%)
Info: cfl dt = 0.0037034664850956593 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2676e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.8112447493903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.944770321507052, dt = 0.0037034664850956593
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 189.96 us (90.7%)
LB move op cnt : 0
LB apply : 2.88 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (55.7%)
Info: cfl dt = 0.003703804961514762 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.78329103729162 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9484737879921477, dt = 0.003703804961514762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 214.13 us (91.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (57.2%)
Info: cfl dt = 0.00370414439563538 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8882e+05 | 65536 | 2 | 1.341e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.45364565916616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9521775929536624, dt = 0.00370414439563538
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 213.84 us (91.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.8%)
Info: cfl dt = 0.0037044847837420453 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.92093291069095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9558817373492978, dt = 0.0037044847837420453
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 203.49 us (91.1%)
LB move op cnt : 0
LB apply : 3.47 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (61.1%)
Info: cfl dt = 0.0037048261221118975 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3959e+05 | 65536 | 2 | 1.215e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.8037468068059 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9595862221330398, dt = 0.0037048261221118975
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 188.99 us (90.6%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.3%)
Info: cfl dt = 0.003705168407014878 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0646e+05 | 65536 | 2 | 1.081e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.42187999151673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9632910482551518, dt = 0.003705168407014878
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.15 us (0.8%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 265.58 us (93.2%)
LB move op cnt : 0
LB apply : 3.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (58.1%)
Info: cfl dt = 0.003705511634713946 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0614e+05 | 65536 | 2 | 1.081e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.36806502843727 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9669962166621666, dt = 0.003705511634713946
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 217.72 us (91.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (59.4%)
Info: cfl dt = 0.0037058558014652723 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9429e+05 | 65536 | 2 | 1.103e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.96808775025903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9707017282968806, dt = 0.0037058558014652723
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 218.82 us (91.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (58.0%)
Info: cfl dt = 0.0037062009035184465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8256e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.5905933906726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.974407584098346, dt = 0.0037062009035184465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 213.42 us (91.6%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.0%)
Info: cfl dt = 0.003706546937116668 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8748e+05 | 65536 | 2 | 1.116e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.60462809631647 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9781137850018644, dt = 0.003706546937116668
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 218.72 us (91.8%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (60.9%)
Info: cfl dt = 0.0037068938984969563 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0627e+05 | 65536 | 2 | 1.081e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.44058348522381 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.981820331938981, dt = 0.0037068938984969563
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 183.48 us (90.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (59.4%)
Info: cfl dt = 0.003707241783890332 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6468e+05 | 65536 | 2 | 1.410e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.62038672768533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.985527225837478, dt = 0.003707241783890332
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 211.80 us (91.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.7%)
Info: cfl dt = 0.00370759058952202 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.9307660429868 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9892344676213685, dt = 0.00370759058952202
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 196.76 us (90.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (52.5%)
Info: cfl dt = 0.003707940311611636 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.74753433258523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9929420582108905, dt = 0.003707940311611636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.27 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 195.96 us (91.0%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.2%)
Info: cfl dt = 0.00370829094637338 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.47894974894926 (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.52 us (2.7%)
patch tree reduce : 2.20 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 182.27 us (90.4%)
LB move op cnt : 0
LB apply : 3.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.6%)
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 | 4.4614e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.0989193444664 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 933.264432829 (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 1.65 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.67 us (53.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.45 us (0.5%)
patch tree reduce : 1.25 us (0.5%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.3%)
LB compute : 254.55 us (95.9%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
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.84 us (3.4%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 752.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 267.88 us (92.1%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 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 | 5.6682e+05 | 65536 | 2 | 1.156e-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.23 us (2.3%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 207.30 us (91.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.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 | 5.5113e+05 | 65536 | 2 | 1.189e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.58971760054558 (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.03 us (2.0%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 237.35 us (92.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.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.4121e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.53289858971084 (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.30 us (1.9%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 260.66 us (93.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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.4005e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.30014462073994 (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.38 us (2.1%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 234.12 us (92.1%)
LB move op cnt : 0
LB apply : 3.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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.3296e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.87898422187412 (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.41 us (2.2%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 227.07 us (92.3%)
LB move op cnt : 0
LB apply : 2.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.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.3302e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.89119532222809 (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.17 us (2.5%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 222.44 us (91.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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 | 4.4051e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.39296872054321 (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 : 6.32 us (2.9%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 197.38 us (90.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.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.4353e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.999988137362 (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.51 us (2.6%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 194.93 us (90.9%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.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.3952e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.1939548920514 (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.73 us (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 207.03 us (91.2%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.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.4092e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.4756366730728 (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.03 us (0.3%)
patch tree reduce : 2.26 us (0.1%)
gen split merge : 1.02 us (0.1%)
split / merge op : 0/0
apply split merge : 1.10 us (0.1%)
LB compute : 1.90 ms (98.8%)
LB move op cnt : 0
LB apply : 3.71 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (75.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 | 5.7721e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.8235635368022 (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.62 us (2.7%)
patch tree reduce : 2.15 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 184.63 us (90.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.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 | 5.1591e+05 | 65536 | 2 | 1.270e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.52327732895105 (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.44 us (2.6%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 189.96 us (90.7%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 6.0227e+05 | 65536 | 2 | 1.088e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.85254334031318 (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.80 us (2.8%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 187.38 us (90.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (52.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.3462e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.21055830034076 (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.33 us (2.3%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 209.40 us (91.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.8891e+05 | 65536 | 2 | 1.340e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.10589679423875 (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.50 us (1.6%)
patch tree reduce : 2.47 us (0.7%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 329.70 us (94.3%)
LB move op cnt : 0
LB apply : 2.96 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.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.7775e+05 | 65536 | 2 | 1.372e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.8666548048854 (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.53 us (2.6%)
patch tree reduce : 2.21 us (1.1%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 189.86 us (90.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (54.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.0982e+05 | 65536 | 2 | 1.599e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.23459312775425 (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.44 us (2.7%)
patch tree reduce : 2.35 us (1.1%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 185.26 us (90.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.7421e+05 | 65536 | 2 | 1.382e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.15566149130109 (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.79 us (2.1%)
patch tree reduce : 2.39 us (0.9%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 256.63 us (92.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.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.2099e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.47693272109116 (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.4%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 238.49 us (92.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.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.2117e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.51200238230217 (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.34 us (2.1%)
patch tree reduce : 14.03 us (5.4%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 228.37 us (88.0%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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.9936e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.13518492818419 (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.49 us (2.0%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 261.02 us (93.0%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.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.9564e+05 | 65536 | 2 | 1.656e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.389978290006 (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.88 us (2.4%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 224.42 us (91.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.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.0546e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.3609838468117 (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.41 us (2.4%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 207.61 us (91.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (53.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.1104e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.480223267691 (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.48 us (2.5%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 203.73 us (91.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (55.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.1061e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.39308410773724 (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.43 us (2.4%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 203.01 us (91.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (52.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.1258e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.78823882710455 (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.50 us (2.0%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 251.04 us (92.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (58.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.1116e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.5037492152932 (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.92 us (2.6%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 203.93 us (91.0%)
LB move op cnt : 0
LB apply : 3.46 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.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.1173e+05 | 65536 | 2 | 1.592e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.61932205052976 (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.77 us (2.6%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 204.52 us (91.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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 | 4.0841e+05 | 65536 | 2 | 1.605e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.9530088895699 (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.45 us (2.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 209.57 us (91.7%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.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.1053e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.3771271271254 (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.24 us (2.3%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 208.86 us (91.7%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.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.0888e+05 | 65536 | 2 | 1.603e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.0470832247087 (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 : 4.97 us (2.2%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 209.79 us (91.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (58.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.3797e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.88423772702936 (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.67 us (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 228.76 us (91.9%)
LB move op cnt : 0
LB apply : 3.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.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.3929e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.14934623244679 (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.76 us (2.6%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 199.53 us (91.0%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (51.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.4017e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.3259556067438 (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.36 us (2.5%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 195.71 us (91.1%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.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.4161e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.61369685567776 (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.30 us (2.3%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 215.60 us (91.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.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.3036e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.35583728342402 (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.25 us (2.4%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 198.69 us (91.1%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (49.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.3796e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.88155491164754 (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.44 us (2.5%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 202.12 us (91.2%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.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.4142e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.57554214412232 (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.53 us (2.0%)
patch tree reduce : 2.35 us (0.9%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 252.89 us (92.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (53.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.3740e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.76925811206377 (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 : 6.10 us (2.7%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 202.11 us (90.8%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (51.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.8292e+05 | 65536 | 2 | 1.711e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.83655284916419 (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.14 us (1.2%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 406.23 us (95.4%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.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.3225e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.7361677756716 (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.88 us (2.8%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 191.31 us (90.5%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (51.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.3394e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.07486628371527 (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.29 us (2.3%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 206.75 us (91.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (53.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.2278e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.83579053044899 (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.40 us (2.4%)
patch tree reduce : 2.35 us (1.0%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 204.27 us (91.1%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.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.3926e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.14299066962204 (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.98 us (2.7%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 203.97 us (91.0%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (52.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.2957e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.19887022871586 (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.63 us (2.5%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 206.04 us (91.2%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (57.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.2405e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.09039280076225 (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.81 us (2.2%)
patch tree reduce : 2.33 us (0.9%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 242.01 us (92.1%)
LB move op cnt : 0
LB apply : 3.66 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.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.2290e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.85958005198695 (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 (2.5%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 212.31 us (91.2%)
LB move op cnt : 0
LB apply : 3.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.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.2353e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.98649789528916 (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.65 us (2.6%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 200.22 us (90.9%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.1136e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.54512447019113 (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.69 us (2.6%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.31 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 198.13 us (90.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (58.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.4046e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.38430873806327 (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.69 us (2.6%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 200.87 us (90.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (55.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.1770e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.81569688734166 (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.58 us (2.4%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 216.30 us (91.3%)
LB move op cnt : 0
LB apply : 3.59 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.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.3299e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.88395332140279 (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 : 6.06 us (2.8%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 195.92 us (90.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.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.1802e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.88054429655735 (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.81 us (2.7%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 197.07 us (90.8%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.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.3175e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.63596950874192 (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.62 us (2.5%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 204.53 us (91.3%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (55.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.2623e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.52767525723975 (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.44 us (2.2%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 227.10 us (91.9%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.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.2173e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.62535755886488 (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.99 us (2.7%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 205.01 us (91.2%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.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.3420e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.12775590347802 (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.43 us (2.5%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 200.96 us (91.3%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.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.1328e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.92845045976098 (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.54 us (2.5%)
patch tree reduce : 2.38 us (1.1%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 201.85 us (90.9%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (51.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.2115e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.50855970898556 (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 (2.6%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 196.36 us (90.8%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (53.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.2041e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.35949245222103 (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.67 us (2.2%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 232.78 us (92.0%)
LB move op cnt : 0
LB apply : 3.53 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.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.3143e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.57189106999489 (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.59 us (1.0%)
patch tree reduce : 2.32 us (0.4%)
gen split merge : 1.07 us (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.2%)
LB compute : 528.99 us (96.2%)
LB move op cnt : 0
LB apply : 3.83 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 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.2771e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.82497169094611 (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.25 us (2.4%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 199.25 us (91.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (57.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.2244e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.76820809385333 (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.74 us (2.6%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 203.08 us (90.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (55.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.1812e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.90043930391337 (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.46 us (2.5%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 201.80 us (91.1%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.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.1368e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.01025039514003 (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.63 us (2.5%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 209.27 us (91.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.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.2075e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.42818391934662 (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.35 us (2.2%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 223.96 us (91.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.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.1350e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.97334991873191 (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.22 us (2.3%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 206.87 us (91.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.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.1513e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.30125586711766 (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.65 us (2.5%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 206.61 us (91.4%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (50.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.1970e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.21664236529344 (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.48 us (2.4%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 205.95 us (91.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (58.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.1591e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.45728501261256 (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.50 us (2.4%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 213.07 us (91.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (58.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.1730e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.73573247858592 (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.39 us (2.5%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 199.32 us (91.1%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.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.2196e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.67067513302531 (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.80 us (2.7%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 198.03 us (91.0%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (56.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.1101e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.4738768102225 (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.54 us (2.1%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 239.88 us (92.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.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.1253e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.77919618468242 (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.43 us (2.2%)
patch tree reduce : 2.33 us (0.9%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 230.72 us (91.9%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (57.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.1541e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.35722075489137 (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.17 us (2.8%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 199.70 us (90.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (53.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.2821e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.92496917637067 (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.15 us (2.1%)
patch tree reduce : 2.44 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 220.98 us (91.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (59.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.2151e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.58040670496118 (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.61 us (2.5%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 200.73 us (91.0%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (52.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.3121e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.5265274246158 (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.43 us (2.5%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 200.69 us (91.3%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (58.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.2827e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.93653055216292 (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.75 us (2.5%)
patch tree reduce : 12.64 us (5.5%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 199.18 us (86.8%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (59.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.2870e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.02357479351261 (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.60 us (2.6%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 198.49 us (90.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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.2505e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.29060669213509 (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.35 us (2.4%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 205.87 us (91.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (57.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.3176e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.63844610101837 (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.38 us (2.5%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 195.99 us (90.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.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.1670e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.61665212320334 (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.44 us (2.3%)
patch tree reduce : 13.64 us (5.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 204.40 us (86.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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.0322e+05 | 65536 | 2 | 1.625e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.91158445950339 (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.66 us (2.4%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 217.29 us (91.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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.1061e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.39334222012815 (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.52 us (2.6%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 194.71 us (90.9%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (57.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.2143e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.56514439471354 (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.42 us (2.3%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 220.09 us (91.9%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.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.1686e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.6476583371157 (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.39 us (2.3%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 211.50 us (91.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.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.1481e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.23696299718179 (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.79 us (2.3%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 228.00 us (91.9%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (57.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.2581e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.44301348521785 (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.39 us (2.1%)
patch tree reduce : 2.28 us (0.9%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 233.61 us (92.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (58.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.2084e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.44684992014307 (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.51 us (2.5%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 203.14 us (91.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (58.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.2059e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.39664359231983 (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.68 us (2.6%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 202.45 us (91.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (52.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.1861e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.99905486955862 (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.41 us (2.4%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 207.75 us (91.4%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.0%)
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.1978e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.23403870054857 (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.18 us (2.3%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 207.19 us (91.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (54.8%)
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.1720e+05 | 65536 | 2 | 1.571e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.71668399341036 (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.41 us (2.4%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 203.52 us (91.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (60.7%)
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.2296e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.87105257669465 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3433755617882396, 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.69 us (2.3%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 222.10 us (91.7%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.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.2044e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.36527999028002 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3470284932966251, 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.52 us (2.5%)
patch tree reduce : 2.39 us (1.1%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 201.55 us (91.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (56.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.1342e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.95815648836744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35068142480501063, 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.73 us (2.4%)
patch tree reduce : 8.22 us (3.4%)
gen split merge : 892.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 217.39 us (89.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.1%)
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 | 4.1437e+05 | 65536 | 2 | 1.582e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.14803701713646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35433435631339616, 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.44 us (2.5%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 202.49 us (91.3%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.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 | 4.1324e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.92055513667647 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3579872878217817, 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.49 us (2.6%)
patch tree reduce : 2.28 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 194.65 us (90.7%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.0%)
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.3034e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.35249621550955 (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.28 us (2.4%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 197.87 us (91.2%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (59.8%)
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.3130e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.54489636667002 (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.10 us (2.2%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 216.59 us (91.6%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (62.1%)
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.1849e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.97500476586275 (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.78 us (2.2%)
patch tree reduce : 2.35 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 245.02 us (92.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (58.1%)
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 | 4.1967e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.21136808179307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3725990138553238, 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.49 us (2.4%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 205.94 us (91.4%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.0%)
Info: cfl dt = 0.003652931508385551 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.61430835943708 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3762519453637093, dt = 0.003652931508385551
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 205.81 us (91.5%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.2%)
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 | 4.3328e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.94216686613588 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37990487687209484, 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.58 us (2.4%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 215.21 us (91.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (55.5%)
Info: cfl dt = 0.003652931508385561 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1617e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.5092420976212 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3835578083804804, dt = 0.003652931508385561
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.20 us (0.8%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 241.13 us (92.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.7%)
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.1938e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.15337999497135 (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.30 us (2.4%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 201.48 us (91.3%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (56.8%)
Info: cfl dt = 0.003652931508385576 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2258e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.79471747007588 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3908636713972516, dt = 0.003652931508385576
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 207.87 us (91.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.8%)
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.3744e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.7780915196614 (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.83 us (2.4%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 222.92 us (91.8%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (53.0%)
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 | 5.5560e+05 | 65536 | 2 | 1.180e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.48689786670118 (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.76 us (2.9%)
patch tree reduce : 2.16 us (1.1%)
gen split merge : 1.13 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 178.50 us (89.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (57.4%)
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 | 5.7362e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.10330020961531 (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.53 us (2.6%)
patch tree reduce : 2.26 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 192.29 us (90.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (55.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 | 5.8827e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.0429802900594 (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.61 us (2.3%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 219.12 us (90.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.1%)
Info: cfl dt = 0.0036529315083856507 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9594e+05 | 65536 | 2 | 1.100e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.58266868647327 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4091283289391796, dt = 0.0036529315083856507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.34 us (1.2%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 179.08 us (90.1%)
LB move op cnt : 0
LB apply : 3.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.7%)
Info: cfl dt = 0.0036529315083856755 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9117e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.6241604440916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41278126044756525, dt = 0.0036529315083856755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 186.19 us (90.3%)
LB move op cnt : 0
LB apply : 3.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (62.7%)
Info: cfl dt = 0.0036529315083857045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4874e+05 | 65536 | 2 | 1.194e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.11124343041111 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41643419195595094, dt = 0.0036529315083857045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 198.12 us (90.7%)
LB move op cnt : 0
LB apply : 3.56 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (60.1%)
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 | 5.7662e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.70580381304823 (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.61 us (2.4%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 217.85 us (91.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (58.6%)
Info: cfl dt = 0.0036529315083857804 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9066e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.52299693874434 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4237400549727224, dt = 0.0036529315083857804
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 211.49 us (91.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.0%)
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 | 5.6882e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.14014827568973 (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.27 us (2.7%)
patch tree reduce : 2.20 us (1.1%)
gen split merge : 992.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 176.04 us (90.0%)
LB move op cnt : 0
LB apply : 3.18 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (53.8%)
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 | 5.8389e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.16412412824076 (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.51 us (2.6%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 192.40 us (90.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.7%)
Info: cfl dt = 0.0036529315083859517 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8539e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.46448309521577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43469884949787985, dt = 0.0036529315083859517
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.27 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 185.19 us (90.1%)
LB move op cnt : 0
LB apply : 3.66 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.6%)
Info: cfl dt = 0.00365293150838603 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8553e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.4927980409479 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4383517810062658, dt = 0.00365293150838603
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.19 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 184.53 us (89.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (52.7%)
Info: cfl dt = 0.0036529315083861217 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7408e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.19529813946845 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44200471251465184, dt = 0.0036529315083861217
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 194.58 us (90.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (52.2%)
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 | 5.7784e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.95121149579961 (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.34 us (2.2%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 218.50 us (91.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.0%)
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 | 5.7379e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.13705627468465 (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.45 us (2.6%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 187.15 us (90.6%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (53.6%)
Info: cfl dt = 0.0036529315083864973 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8289e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.96409589238823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4529635070398106, dt = 0.0036529315083864973
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.43 us (1.0%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 222.90 us (91.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (60.9%)
Info: cfl dt = 0.0036529315083866647 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8881e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.15139278899109 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45661643854819706, dt = 0.0036529315083866647
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 184.64 us (90.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.9%)
Info: cfl dt = 0.003652931508386859 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8115e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.61492652218256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46026937005658375, dt = 0.003652931508386859
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.99 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 184.04 us (90.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (54.9%)
Info: cfl dt = 0.0036529315083870828 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7687e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.75612822972363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4639223015649706, dt = 0.0036529315083870828
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 216.80 us (91.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (60.7%)
Info: cfl dt = 0.00365293150838734 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8710e+05 | 65536 | 2 | 1.116e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.80797089580706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4675752330733577, dt = 0.00365293150838734
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.36 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 233.79 us (92.0%)
LB move op cnt : 0
LB apply : 3.64 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.7%)
Info: cfl dt = 0.003652931508387636 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9410e+05 | 65536 | 2 | 1.326e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.14615778511363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47122816458174505, dt = 0.003652931508387636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 3.27 us (1.2%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.77 us (0.6%)
LB compute : 252.59 us (91.2%)
LB move op cnt : 0
LB apply : 3.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.0%)
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.6318e+05 | 65536 | 2 | 1.415e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.94316180485656 (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.65 us (2.4%)
patch tree reduce : 2.36 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 220.29 us (91.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.5%)
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.3700e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.68869892335225 (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.45 us (2.4%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 204.17 us (91.2%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (51.7%)
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 | 5.9143e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.67789892499788 (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 : 6.03 us (2.7%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 207.01 us (91.3%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.1%)
Info: cfl dt = 0.003652931508389327 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7966e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.31609774552655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4858398906152978, dt = 0.003652931508389327
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 187.50 us (90.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (57.2%)
Info: cfl dt = 0.0036529315083899095 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7733e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.84733713242791 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4894928221236871, dt = 0.0036529315083899095
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 192.00 us (90.7%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.8%)
Info: cfl dt = 0.003652931508390574 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8084e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.55145365455742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.493145753632077, dt = 0.003652931508390574
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.17 us (1.1%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 185.32 us (90.4%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.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 | 5.8723e+05 | 65536 | 2 | 1.116e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.83352275691658 (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.44 us (2.6%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 186.84 us (90.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.9%)
Info: cfl dt = 0.003652931508392185 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7569e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.519385319801 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.500451616648859, dt = 0.003652931508392185
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 187.16 us (90.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.0%)
Info: cfl dt = 0.003652931508393157 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6926e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.22915184395326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5041045481572511, dt = 0.003652931508393157
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 209.96 us (91.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.2%)
Info: cfl dt = 0.0036529315083942567 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5671e+05 | 65536 | 2 | 1.177e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.71018651677555 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5077574796656443, dt = 0.0036529315083942567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 196.16 us (90.8%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (59.7%)
Info: cfl dt = 0.003652931508395501 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7666e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.71264139627694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5114104111740386, dt = 0.003652931508395501
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 232.93 us (92.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (60.9%)
Info: cfl dt = 0.0036529315083969035 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8002e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.38755653806535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5150633426824341, dt = 0.0036529315083969035
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.18 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 186.92 us (90.5%)
LB move op cnt : 0
LB apply : 3.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.2%)
Info: cfl dt = 0.003652931508398485 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8632e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.65264482016262 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.518716274190831, dt = 0.003652931508398485
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 206.85 us (91.3%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (55.5%)
Info: cfl dt = 0.003652931508400265 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7713e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.80846573956055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5223692056992295, dt = 0.003652931508400265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 222.19 us (91.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (54.2%)
Info: cfl dt = 0.0036529315084022655 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1371e+05 | 65536 | 2 | 1.276e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.0819656459979 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5260221372076298, dt = 0.0036529315084022655
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.20 us (1.1%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 189.26 us (90.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.9%)
Info: cfl dt = 0.0036529315084045107 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9998e+05 | 65536 | 2 | 1.092e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.39219572673255 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5296750687160321, dt = 0.0036529315084045107
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.8%)
patch tree reduce : 2.18 us (1.1%)
gen split merge : 951.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 179.21 us (89.8%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (53.4%)
Info: cfl dt = 0.003652931508407028 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9506e+05 | 65536 | 2 | 1.324e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.33896463298882 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5333280002244366, dt = 0.003652931508407028
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 190.98 us (90.8%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.5%)
Info: cfl dt = 0.0036529315084098467 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8210e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.80421476413221 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5369809317328437, dt = 0.0036529315084098467
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 199.07 us (90.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (61.5%)
Info: cfl dt = 0.0036529315084129987 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8320e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.0256498863911 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5406338632412535, dt = 0.0036529315084129987
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 181.22 us (90.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.0%)
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 | 4.9622e+05 | 65536 | 2 | 1.321e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.57250311093655 (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.31 us (2.3%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 207.80 us (91.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (59.4%)
Info: cfl dt = 0.003652931508420444 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9035e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.45990934351423 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.547939726258083, dt = 0.003652931508420444
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 187.93 us (90.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (58.9%)
Info: cfl dt = 0.0036529315084248173 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5765e+05 | 65536 | 2 | 1.175e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.89794402957097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5515926577665035, dt = 0.0036529315084248173
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 208.11 us (91.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.3%)
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 | 5.7374e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.12804089674353 (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.61 us (2.7%)
patch tree reduce : 2.22 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 189.09 us (90.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.9%)
Info: cfl dt = 0.003652931508435094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5673e+05 | 65536 | 2 | 1.177e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.71350318281621 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.558898520783358, dt = 0.003652931508435094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.30 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 194.95 us (90.7%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (54.1%)
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.3349e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.98544153434497 (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.56 us (2.4%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 210.77 us (91.5%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (55.5%)
Info: cfl dt = 0.003652931508447761 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4246e+05 | 65536 | 2 | 1.208e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.85091930696949 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5662043838002342, dt = 0.003652931508447761
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.3%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 196.66 us (90.9%)
LB move op cnt : 0
LB apply : 3.43 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.0%)
Info: cfl dt = 0.0036529315084551394 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5835e+05 | 65536 | 2 | 1.174e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.03850464532509 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.569857315308682, dt = 0.0036529315084551394
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 211.67 us (91.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (55.4%)
Info: cfl dt = 0.0036529315084633056 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.0037e+05 | 65536 | 2 | 1.310e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.40536429494617 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5735102468171371, dt = 0.0036529315084633056
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.50 us (1.0%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 236.46 us (92.2%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (57.9%)
Info: cfl dt = 0.003652931508472333 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7969e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.32111650470569 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5771631783256005, dt = 0.003652931508472333
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 186.18 us (90.1%)
LB move op cnt : 0
LB apply : 3.54 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.8%)
Info: cfl dt = 0.0036529315084823013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6720e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.81561882782151 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5808161098340728, dt = 0.0036529315084823013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 198.18 us (90.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (58.8%)
Info: cfl dt = 0.0036529315084933 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.56438986529844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5844690413425552, dt = 0.0036529315084933
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 211.19 us (91.5%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.5%)
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 | 5.7758e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.89789099811618 (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.70 us (2.4%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 222.59 us (91.9%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (48.8%)
Info: cfl dt = 0.003652931508518765 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9141e+05 | 65536 | 2 | 1.334e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.60684536818984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5917749043595539, dt = 0.003652931508518765
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.31 us (1.1%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 193.53 us (90.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (60.7%)
Info: cfl dt = 0.0036529315085334435 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8329e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.04334076399005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5954278358680727, dt = 0.0036529315085334435
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 191.96 us (90.9%)
LB move op cnt : 0
LB apply : 2.88 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.5%)
Info: cfl dt = 0.003652931508549574 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8944e+05 | 65536 | 2 | 1.683e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.14631751910012 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5990807673766061, dt = 0.003652931508549574
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 230.37 us (91.9%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (60.2%)
Info: cfl dt = 0.0036529315085672832 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0326e+05 | 65536 | 2 | 1.625e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.9184186948069 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6027336988851557, dt = 0.0036529315085672832
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 223.19 us (91.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (59.4%)
Info: cfl dt = 0.0036529315085867082 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7767e+05 | 65536 | 2 | 1.735e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.78315238447111 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.606386630393723, dt = 0.0036529315085867082
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.28 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 220.08 us (91.3%)
LB move op cnt : 0
LB apply : 3.58 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (59.9%)
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.0392e+05 | 65536 | 2 | 1.623e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.05082908804378 (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.56 us (1.1%)
patch tree reduce : 2.28 us (0.4%)
gen split merge : 1.16 us (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.2%)
LB compute : 505.60 us (96.3%)
LB move op cnt : 0
LB apply : 3.10 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (63.1%)
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.0680e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.6288783032787 (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.79 us (2.6%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 206.93 us (91.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (52.3%)
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 | 3.8099e+05 | 65536 | 2 | 1.720e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.45019172710894 (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 : 6.06 us (2.5%)
patch tree reduce : 2.95 us (1.2%)
gen split merge : 1.31 us (0.5%)
split / merge op : 0/0
apply split merge : 1.65 us (0.7%)
LB compute : 222.76 us (90.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.2%)
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 | 3.7468e+05 | 65536 | 2 | 1.749e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.18289703245689 (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.91 us (2.7%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 198.12 us (90.9%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (55.8%)
Info: cfl dt = 0.003652931508715104 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9803e+05 | 65536 | 2 | 1.646e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.86991912806374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6246512879368904, dt = 0.003652931508715104
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 245.31 us (92.3%)
LB move op cnt : 0
LB apply : 3.66 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.1%)
Info: cfl dt = 0.0036529315087483133 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9989e+05 | 65536 | 2 | 1.639e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.24247995388852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6283042194456055, dt = 0.0036529315087483133
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 199.08 us (90.8%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.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.0087e+05 | 65536 | 2 | 1.635e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.43917470980068 (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.64 us (2.1%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 242.93 us (92.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (61.3%)
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 | 4.0152e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.57003536571978 (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.49 us (2.4%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 205.86 us (91.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.2%)
Info: cfl dt = 0.0036529315088668973 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0180e+05 | 65536 | 2 | 1.631e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.62583462553285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6392630139719624, dt = 0.0036529315088668973
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 205.74 us (91.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (59.6%)
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 | 3.8995e+05 | 65536 | 2 | 1.681e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.24772872570136 (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.64 us (2.5%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 201.63 us (91.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (61.2%)
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 | 3.9100e+05 | 65536 | 2 | 1.676e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.45786367517539 (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 : 6.22 us (2.7%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 209.93 us (90.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (67.9%)
Info: cfl dt = 0.003652931509019466 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9776e+05 | 65536 | 2 | 1.648e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.81501074648203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6502218084987073, dt = 0.003652931509019466
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.35 us (7.0%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 201.47 us (86.8%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.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.0209e+05 | 65536 | 2 | 1.630e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.68431848566753 (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.72 us (2.5%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 204.52 us (91.1%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.1%)
Info: cfl dt = 0.003652931509144138 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.7189733064959 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.657527671516806, dt = 0.003652931509144138
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 217.31 us (91.7%)
LB move op cnt : 0
LB apply : 2.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (47.2%)
Info: cfl dt = 0.0036529315092144205 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9925e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.11395363510749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6611806030259502, dt = 0.0036529315092144205
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 209.69 us (91.5%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (53.9%)
Info: cfl dt = 0.003652931509290523 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.7039014406003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6648335345351646, dt = 0.003652931509290523
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 234.46 us (92.4%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.9%)
Info: cfl dt = 0.0036529315093728693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0409e+05 | 65536 | 2 | 1.622e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.0852385827548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.668486466044455, dt = 0.0036529315093728693
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 202.84 us (91.3%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.0%)
Info: cfl dt = 0.003652931509461913 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0823e+05 | 65536 | 2 | 1.605e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.91629822074715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6721393975538279, dt = 0.003652931509461913
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.29 us (0.6%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 204.96 us (91.0%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (53.9%)
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.9650e+05 | 65536 | 2 | 1.653e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.56179518476394 (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.56 us (2.3%)
patch tree reduce : 2.36 us (1.0%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 226.09 us (91.8%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (58.1%)
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 | 4.0781e+05 | 65536 | 2 | 1.607e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.83188067266626 (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.24 us (2.3%)
patch tree reduce : 13.75 us (5.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 201.40 us (86.7%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (54.4%)
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 | 4.1642e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.55856672922216 (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.39 us (2.5%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 196.05 us (91.1%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (52.8%)
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 | 4.0826e+05 | 65536 | 2 | 1.605e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.92164412490902 (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 (2.4%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 211.10 us (91.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.8%)
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 | 4.1200e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.67344533327599 (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.36 us (2.5%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 199.17 us (91.1%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (58.5%)
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 | 4.0627e+05 | 65536 | 2 | 1.613e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.52352435312545 (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.58 us (2.2%)
patch tree reduce : 2.12 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 230.38 us (91.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (61.5%)
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 | 4.0052e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.36852924188562 (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.33 us (2.3%)
patch tree reduce : 2.49 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 213.96 us (91.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.9%)
Info: cfl dt = 0.0036529315104792503 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9785e+05 | 65536 | 2 | 1.647e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.83237289604996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.701362849632687, dt = 0.0036529315104792503
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.31 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 211.83 us (91.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (61.9%)
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 | 4.1098e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.46880411830809 (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.50 us (2.3%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 214.25 us (91.5%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.8%)
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 | 4.1163e+05 | 65536 | 2 | 1.592e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.59761751862911 (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.85 us (2.6%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 204.00 us (91.2%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (60.7%)
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 | 4.1245e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.76351596282295 (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.47 us (2.4%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 203.81 us (91.2%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (52.8%)
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 | 4.1311e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.89597841479076 (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 : 5.83 us (2.5%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 209.59 us (91.3%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (50.0%)
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 | 4.0796e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.86226665354667 (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.61 us (2.4%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 215.89 us (91.6%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (54.4%)
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 | 4.1174e+05 | 65536 | 2 | 1.592e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.6194290476809 (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.91 us (2.5%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 218.96 us (91.5%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.6%)
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 | 4.1623e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.52221808211645 (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.29 us (1.0%)
patch tree reduce : 2.29 us (0.5%)
gen split merge : 1.13 us (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.2%)
LB compute : 486.51 us (96.2%)
LB move op cnt : 0
LB apply : 3.15 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (58.2%)
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 | 4.0854e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.97905545863694 (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.48 us (2.4%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 209.65 us (91.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.5%)
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.1351e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.97587920932095 (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.66 us (2.3%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 221.98 us (91.8%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (51.4%)
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.1558e+05 | 65536 | 2 | 1.577e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.3911737990505 (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.45 us (2.5%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 200.93 us (91.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.1%)
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.1404e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.08223619184592 (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.77 us (2.6%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 202.69 us (91.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (57.2%)
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.1537e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.34811320158268 (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.56 us (2.5%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 203.26 us (91.1%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (58.8%)
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 | 3.9839e+05 | 65536 | 2 | 1.645e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.94194823033533 (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.36 us (2.5%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 198.09 us (91.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.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.0582e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.43273732188322 (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 : 10.78 us (4.8%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 200.35 us (88.9%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (54.2%)
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.1140e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.55306260592963 (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.26 us (2.2%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 222.26 us (91.7%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.6%)
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.1482e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.23923341216924 (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.18 us (2.0%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 235.29 us (92.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.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.1245e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.76196180321492 (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.70 us (2.6%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 199.44 us (91.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (53.6%)
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 | 4.1127e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.52509755455415 (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.71 us (2.4%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 222.37 us (91.7%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.8%)
Info: cfl dt = 0.0036529315170502866 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.2719054198387 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.770768548378145, dt = 0.0036529315170502866
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 212.85 us (91.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (60.2%)
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.0260e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.78553966392326 (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 : 6.02 us (2.6%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 207.27 us (90.4%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.9%)
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 | 3.9637e+05 | 65536 | 2 | 1.653e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.5360800883956 (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.54 us (2.1%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 244.48 us (92.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (59.6%)
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.1275e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.82211909729337 (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 : 5.48 us (2.4%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 210.99 us (91.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.5%)
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.0296e+05 | 65536 | 2 | 1.626e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.85757282537291 (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 : 5.46 us (2.3%)
patch tree reduce : 2.23 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 215.45 us (91.6%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.6%)
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 | 3.9895e+05 | 65536 | 2 | 1.643e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.05319174478248 (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.50 us (2.5%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 202.02 us (91.3%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (51.6%)
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.0912e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.09513571814283 (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.40 us (2.3%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 215.69 us (91.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (59.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.0887e+05 | 65536 | 2 | 1.603e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.0445486836373 (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.58 us (2.5%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 199.64 us (91.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.8%)
Info: cfl dt = 0.003652931523258297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0460e+05 | 65536 | 2 | 1.620e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.1884929614194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7999920005343178, dt = 0.003652931523258297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 205.04 us (91.3%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.8%)
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.1140e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.55239273896368 (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 : 5.95 us (2.5%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 213.98 us (91.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (58.2%)
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.1196e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.66410278775227 (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.25 us (2.3%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 211.96 us (91.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.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.0902e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.0741380695494 (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.68 us (2.4%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 212.92 us (91.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.8%)
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 | 4.1244e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.76163339494387 (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.92 us (2.7%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 200.07 us (90.8%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (58.5%)
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 | 4.1327e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.92655261941442 (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.68 us (2.3%)
patch tree reduce : 2.29 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 230.34 us (92.1%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.1%)
Info: cfl dt = 0.003652931530256891 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0985e+05 | 65536 | 2 | 1.599e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.24052988004063 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8219095896901963, dt = 0.003652931530256891
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.36 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 200.37 us (90.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (52.4%)
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 | 4.0920e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.11061932168748 (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.64 us (2.5%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 206.69 us (91.4%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.4%)
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 | 4.0460e+05 | 65536 | 2 | 1.620e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.18798090639685 (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.85 us (2.2%)
patch tree reduce : 2.17 us (0.8%)
gen split merge : 1.35 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 235.23 us (88.3%)
LB move op cnt : 0
LB apply : 3.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (60.8%)
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 | 3.8822e+05 | 65536 | 2 | 1.688e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.90170108539837 (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 : 6.73 us (2.9%)
patch tree reduce : 2.69 us (1.2%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 206.07 us (90.0%)
LB move op cnt : 0
LB apply : 3.69 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (55.6%)
Info: cfl dt = 0.0036529315364248046 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.60647052815709 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8365213158200495, dt = 0.0036529315364248046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 208.21 us (91.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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.9860e+05 | 65536 | 2 | 1.644e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.98310542744451 (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.53 us (2.4%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 211.90 us (91.4%)
LB move op cnt : 0
LB apply : 3.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.5%)
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.9705e+05 | 65536 | 2 | 1.651e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.6733750712101 (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.64 us (2.4%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 210.44 us (91.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (60.0%)
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 | 3.9885e+05 | 65536 | 2 | 1.643e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.03452540560298 (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.62 us (2.4%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 215.83 us (91.7%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.7%)
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 | 3.9543e+05 | 65536 | 2 | 1.657e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.34689999568936 (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.46 us (2.4%)
patch tree reduce : 2.37 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 210.20 us (91.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (52.4%)
Info: cfl dt = 0.0036529315462849603 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0206e+05 | 65536 | 2 | 1.630e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.67788632312883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8547859735208376, dt = 0.0036529315462849603
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 212.80 us (91.8%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.0%)
Info: cfl dt = 0.003652931548591695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1027e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.32621352761612 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8584389050671226, dt = 0.003652931548591695
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 204.97 us (91.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.3%)
Info: cfl dt = 0.003652931551022465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1307e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.88719570983662 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8620918366157143, dt = 0.003652931551022465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 202.38 us (91.3%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.3%)
Info: cfl dt = 0.0036529315535830387 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1639e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.55357138411074 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8657447681667367, dt = 0.0036529315535830387
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.28 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 223.12 us (91.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.6%)
Info: cfl dt = 0.00365293155627941 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0679e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.62789076512057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8693976997203198, dt = 0.00365293155627941
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 240.61 us (92.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.8%)
Info: cfl dt = 0.0036529315591178045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0138e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.54103858390215 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8730506312765992, dt = 0.0036529315591178045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.41 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 228.77 us (91.9%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.2%)
Info: cfl dt = 0.003652931562104686 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0499e+05 | 65536 | 2 | 1.618e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.26649478377641 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.876703562835717, dt = 0.003652931562104686
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.37 us (1.0%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 223.13 us (90.0%)
LB move op cnt : 0
LB apply : 4.46 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (55.8%)
Info: cfl dt = 0.0036529315652467664 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.60757345370573 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8803564943978217, dt = 0.0036529315652467664
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.34 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 240.74 us (92.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.3%)
Info: cfl dt = 0.003652931568551011 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8332e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.04906709179552 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8840094259630685, dt = 0.003652931568551011
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 210.31 us (91.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.0%)
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 | 5.8382e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.15034236867395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8876623575316196, 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 : 6.10 us (2.7%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 203.71 us (90.9%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.0%)
Info: cfl dt = 0.0036529315756751645 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8072e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.52816873483543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8913152891036442, dt = 0.0036529315756751645
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 190.61 us (90.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.8%)
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 | 5.9395e+05 | 65536 | 2 | 1.103e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.18196969657821 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8949682206793194, 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 : 5.37 us (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 192.28 us (91.0%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.4%)
Info: cfl dt = 0.003652931583538239 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9825e+05 | 65536 | 2 | 1.095e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.04568304721826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8986211522588297, dt = 0.003652931583538239
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.14 us (1.1%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 180.08 us (90.1%)
LB move op cnt : 0
LB apply : 3.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (56.7%)
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.3596e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.47947778439219 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9022740838423678, 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.62 us (2.3%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 226.90 us (91.9%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (55.2%)
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 | 5.5292e+05 | 65536 | 2 | 1.185e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.94949580649592 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9059270154301351, 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.51 us (2.5%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 196.48 us (90.9%)
LB move op cnt : 0
LB apply : 3.40 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (57.0%)
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 | 5.9777e+05 | 65536 | 2 | 1.096e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.94891952685079 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.909579947022341, 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.37 us (2.5%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 193.52 us (90.9%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (52.2%)
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 | 5.9571e+05 | 65536 | 2 | 1.100e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.53584439698757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9132328786192043, 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.32 us (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 192.05 us (91.0%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.5%)
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 | 5.9796e+05 | 65536 | 2 | 1.096e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.98801635975428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.916885810220953, 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.53 us (2.7%)
patch tree reduce : 2.21 us (1.1%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 188.12 us (90.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.9%)
Info: cfl dt = 0.003652931612241985 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9623e+05 | 65536 | 2 | 1.099e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.64127492686944 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9205387418278245, dt = 0.003652931612241985
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 194.73 us (90.7%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (58.6%)
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 | 5.0983e+05 | 65536 | 2 | 1.285e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.30393783225173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9241916734400665, 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.06 us (2.4%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 191.88 us (90.9%)
LB move op cnt : 0
LB apply : 3.34 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (53.5%)
Info: cfl dt = 0.003652931623767051 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6436e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.24479568716009 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9278446050579368, dt = 0.003652931623767051
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 207.13 us (91.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (57.8%)
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 | 5.9372e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.13732235424553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9314975366817038, 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.75 us (2.6%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 199.16 us (90.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (58.6%)
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.3644e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.57769199503747 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.935150468311647, 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.50 us (2.6%)
patch tree reduce : 2.21 us (1.1%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 189.28 us (90.8%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (53.3%)
Info: cfl dt = 0.003652931643180381 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6276e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.92412000868913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9388033999480576, dt = 0.003652931643180381
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 183.03 us (90.2%)
LB move op cnt : 0
LB apply : 3.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.8%)
Info: cfl dt = 0.0036529316502651107 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7173e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.72352994902042 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.942456331591238, dt = 0.0036529316502651107
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 212.96 us (91.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (55.5%)
Info: cfl dt = 0.00365293165767729 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7350e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.07955951390548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9461092632415031, dt = 0.00365293165767729
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.60 us (5.0%)
patch tree reduce : 2.37 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 187.22 us (88.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (54.1%)
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 | 5.8208e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.80118710871413 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9497621948991805, 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.62 us (2.8%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 972.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 183.17 us (90.3%)
LB move op cnt : 0
LB apply : 3.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (57.1%)
Info: cfl dt = 0.0036529316735364422 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8933e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.25577823117692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9534151265646104, dt = 0.0036529316735364422
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 201.40 us (91.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (53.6%)
Info: cfl dt = 0.0036529316820107204 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7636e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.65262444747916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9570680582381468, dt = 0.0036529316820107204
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.8%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.6%)
LB compute : 178.92 us (90.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (57.7%)
Info: cfl dt = 0.003652931690867079 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8910e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.20936320052698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9607209899201575, dt = 0.003652931690867079
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.22 us (0.9%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 214.64 us (91.3%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.9%)
Info: cfl dt = 0.0036529317001203036 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4516e+05 | 65536 | 2 | 1.202e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.39297506850714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9643739216110246, dt = 0.0036529317001203036
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 207.69 us (91.5%)
LB move op cnt : 0
LB apply : 2.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.9%)
Info: cfl dt = 0.0036529317097856533 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2647e+05 | 65536 | 2 | 1.245e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.64211076376968 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9680268533111449, dt = 0.0036529317097856533
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.30 us (1.1%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 186.10 us (90.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.6%)
Info: cfl dt = 0.003652931719878873 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9565e+05 | 65536 | 2 | 1.100e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.52440123005468 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9716797850209306, dt = 0.003652931719878873
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 205.55 us (91.2%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (54.7%)
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 | 5.9406e+05 | 65536 | 2 | 1.103e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.20595168841625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9753327167408095, 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.81 us (2.8%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 189.72 us (90.3%)
LB move op cnt : 0
LB apply : 3.54 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (53.8%)
Info: cfl dt = 0.003652931741414402 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0369e+05 | 65536 | 2 | 1.086e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.13648676453431 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9789856484712257, dt = 0.003652931741414402
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.8%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 176.36 us (90.2%)
LB move op cnt : 0
LB apply : 3.29 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.1%)
Info: cfl dt = 0.0036529317528907405 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0082e+05 | 65536 | 2 | 1.091e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.5619212896205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9826385802126402, dt = 0.0036529317528907405
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 223.74 us (91.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (59.1%)
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 | 5.9878e+05 | 65536 | 2 | 1.094e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.15280115408586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9862915119655309, 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.83 us (2.7%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 200.26 us (91.0%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (54.6%)
Info: cfl dt = 0.003652931777349628 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9170e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.73132783453408 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9899444437303939, dt = 0.003652931777349628
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 188.42 us (90.6%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.3%)
Info: cfl dt = 0.003652931790369455 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9787e+05 | 65536 | 2 | 1.096e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.97043686737223 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9935973755077435, dt = 0.003652931790369455
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.17 us (1.1%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 182.68 us (90.3%)
LB move op cnt : 0
LB apply : 3.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.9%)
Info: cfl dt = 0.0036529318039420053 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9641e+05 | 65536 | 2 | 1.099e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.67685086466007 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9972503072981129, dt = 0.0036529318039420053
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 1.99 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 187.34 us (90.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.7%)
Info: cfl dt = 0.0036529318180873616 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9248e+05 | 65536 | 2 | 1.106e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.88719348707922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.000903239102055, dt = 0.0036529318180873616
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 200.02 us (91.0%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.6%)
Info: cfl dt = 0.0036529318328262063 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.63286747247713 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0045561709201423, dt = 0.0036529318328262063
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 186.18 us (90.5%)
LB move op cnt : 0
LB apply : 3.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (52.7%)
Info: cfl dt = 0.0036529318481798405 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1951e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.18030952590966 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0082091027529685, dt = 0.0036529318481798405
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 237.50 us (92.2%)
LB move op cnt : 0
LB apply : 3.52 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.1%)
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.1197e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.66568409149178 (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.72 us (2.4%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 220.20 us (91.8%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.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.3430e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.14804063459341 (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.64 us (2.5%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 204.36 us (91.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (53.4%)
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.9002e+05 | 65536 | 2 | 1.337e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.32736411183029 (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 (2.4%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 211.41 us (91.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (54.3%)
Info: cfl dt = 0.0036529319161906003 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7437e+05 | 65536 | 2 | 1.382e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.187581425177 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0228208302442905, dt = 0.0036529319161906003
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 212.73 us (91.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (58.2%)
Info: cfl dt = 0.0036529319349602202 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6347e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.06696000489254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0264737621604811, dt = 0.0036529319349602202
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.26 us (1.1%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 191.32 us (90.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (58.5%)
Info: cfl dt = 0.003652931954486165 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6725e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.82470518054694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0301266940954414, dt = 0.003652931954486165
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 981.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 189.06 us (90.6%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (51.7%)
Info: cfl dt = 0.0036529319747944495 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7235e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.84771404575238 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0337796260499277, dt = 0.0036529319747944495
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 232.79 us (91.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (62.1%)
Info: cfl dt = 0.003652931995911829 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6949e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.27440496731188 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0374325580247221, dt = 0.003652931995911829
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.37 us (1.1%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 191.41 us (90.4%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.8%)
Info: cfl dt = 0.0036529320178658067 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6468e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.31042840582148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0410854900206339, dt = 0.0036529320178658067
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.26 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 194.23 us (91.0%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.4%)
Info: cfl dt = 0.0036529320406846542 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6397e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.16708947333377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0447384220384996, dt = 0.0036529320406846542
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.29 us (1.1%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 189.01 us (90.6%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.7%)
Info: cfl dt = 0.003652932064397427 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7042e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.46052278332104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0483913540791843, dt = 0.003652932064397427
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 188.19 us (90.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (53.0%)
Info: cfl dt = 0.0036529320890339814 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6961e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.29796186947009 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0520442861435817, dt = 0.0036529320890339814
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.20 us (1.1%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 187.12 us (90.5%)
LB move op cnt : 0
LB apply : 2.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.7%)
Info: cfl dt = 0.0036529321146249894 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7282e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.94214800093484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0556972182326156, dt = 0.0036529321146249894
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 195.43 us (90.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (55.2%)
Info: cfl dt = 0.003652932141201958 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7080e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.53829220143776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0593501503472407, dt = 0.003652932141201958
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.20 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 189.40 us (90.4%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (57.5%)
Info: cfl dt = 0.003652932168797246 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6825e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.02578903185416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0630030824884427, dt = 0.003652932168797246
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 191.71 us (90.9%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (64.9%)
Info: cfl dt = 0.003652932197444083 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6858e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.09215110036521 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.06665601465724, dt = 0.003652932197444083
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 228.40 us (91.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.2%)
Info: cfl dt = 0.0036529322271765816 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7536e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.45266193479453 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.070308946854684, dt = 0.0036529322271765816
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 195.70 us (90.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (57.0%)
Info: cfl dt = 0.003652932258029763 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5660e+05 | 65536 | 2 | 1.177e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.68765659941714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0739618790818606, dt = 0.003652932258029763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 216.09 us (91.7%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (58.7%)
Info: cfl dt = 0.0036529322900395703 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.5751766093791 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0776148113398905, dt = 0.0036529322900395703
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 207.72 us (91.2%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.4%)
Info: cfl dt = 0.0036529323232428897 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0712e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.69386273353045 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.08126774362993, dt = 0.0036529323232428897
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 206.36 us (91.0%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (40.6%)
Info: cfl dt = 0.0036529323576775657 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1317e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.90746723198552 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0849206759531729, dt = 0.0036529323576775657
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 256.83 us (92.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (56.1%)
Info: cfl dt = 0.0036529323933824263 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.41635949053274 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0885736083108504, dt = 0.0036529323933824263
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 209.75 us (91.2%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.6%)
Info: cfl dt = 0.0036529324303972923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1665e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.60584474196509 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0922265407042329, dt = 0.0036529324303972923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 211.15 us (91.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (61.1%)
Info: cfl dt = 0.0036529324687630082 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2038e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.35406788339544 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0958794731346302, dt = 0.0036529324687630082
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 211.85 us (91.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (53.7%)
Info: cfl dt = 0.003652932508521456 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0241e+05 | 65536 | 2 | 1.629e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.74812460780073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0995324056033933, dt = 0.003652932508521456
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 207.64 us (91.3%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (55.6%)
Info: cfl dt = 0.003652932549715572 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0270e+05 | 65536 | 2 | 1.627e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.80542198175709 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1031853381119148, dt = 0.003652932549715572
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.32 us (0.6%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 207.50 us (91.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.3%)
Info: cfl dt = 0.0036529325923893748 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9670e+05 | 65536 | 2 | 1.652e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.60256516040474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1068382706616304, dt = 0.0036529325923893748
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 210.75 us (91.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (61.3%)
Info: cfl dt = 0.0036529326365879796 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0673e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.61597177233419 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1104912032540197, dt = 0.0036529326365879796
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 197.51 us (90.5%)
LB move op cnt : 0
LB apply : 3.60 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (56.0%)
Info: cfl dt = 0.0036529326823576207 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0056e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.3762061342178 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1141441358906077, dt = 0.0036529326823576207
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 205.93 us (91.1%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (51.1%)
Info: cfl dt = 0.0036529327297456743 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0046e+05 | 65536 | 2 | 1.637e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.357638880113 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1177970685729652, dt = 0.0036529327297456743
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 207.19 us (91.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.3%)
Info: cfl dt = 0.003652932778800677 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8440e+05 | 65536 | 2 | 1.705e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.13426684449237 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1214500013027109, dt = 0.003652932778800677
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 217.92 us (91.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (59.2%)
Info: cfl dt = 0.003652932829572347 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1625e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.52473025281562 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1251029340815115, dt = 0.003652932829572347
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 195.28 us (90.8%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (57.0%)
Info: cfl dt = 0.0036529328821116105 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.6583570924199 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1287558669110838, dt = 0.0036529328821116105
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 237.52 us (91.9%)
LB move op cnt : 0
LB apply : 3.89 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.3%)
Info: cfl dt = 0.0036529329364706174 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4036e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.36263916937511 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1324087997931953, dt = 0.0036529329364706174
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.17 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 244.45 us (92.4%)
LB move op cnt : 0
LB apply : 3.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.3%)
Info: cfl dt = 0.0036529329927027674 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.05593402289311 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1360617327296658, dt = 0.0036529329927027674
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.28 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 234.04 us (92.1%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (50.5%)
Info: cfl dt = 0.003652933050862731 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.40206991989136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1397146657223687, dt = 0.003652933050862731
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 216.84 us (91.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.8%)
Info: cfl dt = 0.0036529331110064732 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.21366282699799 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1433675987732315, dt = 0.0036529331110064732
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 214.36 us (91.1%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.6%)
Info: cfl dt = 0.003652933173191275 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.86468222101153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.147020531884238, dt = 0.003652933173191275
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 222.84 us (91.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (63.2%)
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.3057e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.39868015953358 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1506734650574293, 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.54 us (2.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 207.86 us (91.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (52.7%)
Info: cfl dt = 0.0036529333039199033 [amr::basegodunov][rank=0]
Info: Timestep perf 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.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.8946455818855 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.154326398294905, dt = 0.0036529333039199033
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 198.89 us (91.2%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (62.1%)
Info: cfl dt = 0.003652933372585087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4622e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.53882140030011 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.157979331598825, dt = 0.003652933372585087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 218.87 us (91.7%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (59.7%)
Info: cfl dt = 0.003652933443534089 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.73069488751811 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.16163226497141, dt = 0.003652933443534089
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.02 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 191.63 us (90.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (52.8%)
Info: cfl dt = 0.003652933516831127 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4593e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.4805725557463 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.165285198414944, dt = 0.003652933516831127
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 200.68 us (90.8%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (57.5%)
Info: cfl dt = 0.003652933592541879 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.29505904250023 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.168938131931775, dt = 0.003652933592541879
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.98 us (0.2%)
gen split merge : 1.02 us (0.1%)
split / merge op : 0/0
apply split merge : 1.06 us (0.1%)
LB compute : 835.85 us (97.7%)
LB move op cnt : 0
LB apply : 3.21 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.1%)
Info: cfl dt = 0.0036529336707335045 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.78008158093503 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.172591065524317, dt = 0.0036529336707335045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 202.28 us (91.3%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (54.3%)
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.3913e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.11678718087877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1762439991950506, 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 : 5.37 us (2.5%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 198.15 us (91.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (57.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.3717e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.72348274245135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1798969329465252, 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.42 us (2.4%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 205.49 us (91.4%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.6%)
Info: cfl dt = 0.003652933920888026 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6102e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.57567880947494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1835498667813609, dt = 0.003652933920888026
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 200.40 us (90.9%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (51.6%)
Info: cfl dt = 0.0036529340097053217 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7455e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.28971971318734 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1872028007022488, dt = 0.0036529340097053217
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 217.00 us (91.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (56.3%)
Info: cfl dt = 0.003652934101362441 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7527e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.43389477456846 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1908557347119542, dt = 0.003652934101362441
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 257.75 us (92.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (64.2%)
Info: cfl dt = 0.003652934195935983 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7556e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.49375176475935 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1945086688133166, dt = 0.003652934195935983
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 229.24 us (91.7%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (54.2%)
Info: cfl dt = 0.0036529342935042106 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9975e+05 | 65536 | 2 | 1.311e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.27980379071579 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1981616030092526, dt = 0.0036529342935042106
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.48 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 216.74 us (91.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.3%)
Info: cfl dt = 0.0036529343941470757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3626e+05 | 65536 | 2 | 1.222e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.60765077921135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2018145373027567, dt = 0.0036529343941470757
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.34 us (1.0%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 223.52 us (91.9%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.2%)
Info: cfl dt = 0.003652934497946251 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8172e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.72793216963035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2054674716969038, dt = 0.003652934497946251
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 191.24 us (86.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.1%)
Info: cfl dt = 0.0036529346049851497 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8369e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.1234701000662 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2091204061948502, dt = 0.0036529346049851497
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 189.27 us (90.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (52.7%)
Info: cfl dt = 0.003652934715348961 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6847e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.07063283389517 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2127733407998353, dt = 0.003652934715348961
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 199.78 us (90.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.6%)
Info: cfl dt = 0.0036529348291246717 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8833e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.05494719203791 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2164262755151842, dt = 0.0036529348291246717
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 256.12 us (92.6%)
LB move op cnt : 0
LB apply : 3.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (60.6%)
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 | 5.9078e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.5459476764904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.220079210344309, 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.27 us (2.3%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 207.40 us (91.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (61.1%)
Info: cfl dt = 0.003652935067268911 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7180e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.73877527921461 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2237321452907102, dt = 0.003652935067268911
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 225.94 us (91.9%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.0%)
Info: cfl dt = 0.0036529351918206656 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8407e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.20004241271823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.227385080357979, dt = 0.0036529351918206656
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 186.30 us (90.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (58.3%)
Info: cfl dt = 0.0036529353201508337 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7872e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.12742013402148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2310380155497997, dt = 0.0036529353201508337
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 186.92 us (90.3%)
LB move op cnt : 0
LB apply : 3.61 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.9%)
Info: cfl dt = 0.003652935452355825 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7486e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.35289250291605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2346909508699506, dt = 0.003652935452355825
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.28 us (1.1%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 194.65 us (90.6%)
LB move op cnt : 0
LB apply : 3.57 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.0%)
Info: cfl dt = 0.0036529355885340222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8136e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.65614052465399 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2383438863223064, dt = 0.0036529355885340222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 235.11 us (92.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (58.2%)
Info: cfl dt = 0.0036529357287858077 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6302e+05 | 65536 | 2 | 1.164e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.97651774750466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2419968219108404, dt = 0.0036529357287858077
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 197.62 us (90.1%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.9%)
Info: cfl dt = 0.0036529358732135973 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7454e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.28898739379436 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2456497576396262, dt = 0.0036529358732135973
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 197.20 us (91.0%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (54.9%)
Info: cfl dt = 0.0036529360219218644 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7928e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.23965918247022 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2493026935128397, dt = 0.0036529360219218644
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 184.34 us (90.4%)
LB move op cnt : 0
LB apply : 2.98 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.7%)
Info: cfl dt = 0.003652936175017174 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9018e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.42656082749393 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2529556295347617, dt = 0.003652936175017174
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 202.29 us (90.9%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.9%)
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 | 5.7616e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.61283380493845 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.256608565709779, 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.50 us (2.4%)
patch tree reduce : 2.42 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 209.91 us (91.2%)
LB move op cnt : 0
LB apply : 3.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.0%)
Info: cfl dt = 0.003652936494805815 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2666e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.61385593531882 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.260261502042387, dt = 0.003652936494805815
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 219.88 us (91.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (55.5%)
Info: cfl dt = 0.003652936661723005 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.76882159331073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.263914438537193, dt = 0.003652936661723005
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 210.34 us (91.4%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.9%)
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.3191e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.66765765912848 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.267567375198916, 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.24 us (2.2%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 220.23 us (91.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (63.0%)
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.3039e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.36229898874645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.271220312032391, 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.74 us (2.6%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 202.84 us (91.1%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (46.6%)
Info: cfl dt = 0.0036529371919556885 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.38434517149565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2748732490425703, dt = 0.0036529371919556885
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 201.30 us (90.8%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (52.5%)
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.1465e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.2050621891816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2785261862345259, 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.50 us (2.3%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 220.27 us (91.8%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (72.4%)
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.0832e+05 | 65536 | 2 | 1.605e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.93427316748749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.282179123613452, 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 : 6.04 us (2.7%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 206.24 us (91.2%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (59.4%)
Info: cfl dt = 0.003652937768949506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0563e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.39431117877928 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2858320611846672, dt = 0.003652937768949506
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 206.28 us (91.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (53.3%)
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 | 4.1733e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.74292902792084 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2894849989536168, 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 : 5.37 us (2.2%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 227.81 us (92.0%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (60.1%)
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.1608e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.49196502617147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.293137936925875, 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.57 us (2.5%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 199.92 us (91.1%)
LB move op cnt : 0
LB apply : 2.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.0%)
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.1129e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.53113063119412 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2967908751071484, 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.72 us (2.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 201.10 us (91.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (49.7%)
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.1295e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.86315690273796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3004438135032768, 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.76 us (2.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 203.66 us (91.1%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.8%)
Info: cfl dt = 0.0036529388439082455 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.29437208724596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3040967521202371, dt = 0.0036529388439082455
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 872.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 194.69 us (90.7%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.3%)
Info: cfl dt = 0.0036529390771138227 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1383e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.03958090584095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3077496909641453, dt = 0.0036529390771138227
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 207.91 us (91.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.2%)
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 | 4.0980e+05 | 65536 | 2 | 1.599e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.2312195243047 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3114026300412591, 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.21 us (2.3%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 204.14 us (91.1%)
LB move op cnt : 0
LB apply : 3.58 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (56.4%)
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 | 4.1548e+05 | 65536 | 2 | 1.577e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.3703620222724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3150555693579804, 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.30 us (2.1%)
patch tree reduce : 2.13 us (0.8%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 237.67 us (92.3%)
LB move op cnt : 0
LB apply : 3.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (60.5%)
Info: cfl dt = 0.003652939815733014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0704e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.67843036363506 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3187085089208583, dt = 0.003652939815733014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 210.89 us (91.6%)
LB move op cnt : 0
LB apply : 2.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (53.9%)
Info: cfl dt = 0.0036529400754390573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1066e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.40394786906859 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3223614487365913, dt = 0.0036529400754390573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 204.08 us (91.1%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.2%)
Info: cfl dt = 0.003652940342151132 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1276e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.82515496405378 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3260143888120304, dt = 0.003652940342151132
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 207.07 us (91.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.2%)
Info: cfl dt = 0.003652940616027111 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0579e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.42703722058084 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3296673291541814, dt = 0.003652940616027111
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 203.30 us (88.8%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (58.5%)
Info: cfl dt = 0.0036529408972276866 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1148e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.56841119055107 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3333202697702085, dt = 0.0036529408972276866
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 197.68 us (90.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.4%)
Info: cfl dt = 0.0036529411859164028 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1183e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.63862061437916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3369732106674361, dt = 0.0036529411859164028
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 200.03 us (91.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.9%)
Info: cfl dt = 0.0036529414822596877 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1029e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.32979535956596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3406261518533524, dt = 0.0036529414822596877
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.33 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 236.89 us (92.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (54.5%)
Info: cfl dt = 0.003652941786426899 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.94645907333502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3442790933356121, dt = 0.003652941786426899
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.31 us (0.9%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 225.41 us (91.8%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (56.7%)
Info: cfl dt = 0.003652942098590353 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0230e+05 | 65536 | 2 | 1.629e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.72718354825159 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.347932035122039, dt = 0.003652942098590353
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.30 us (0.6%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 196.51 us (90.8%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (57.7%)
Info: cfl dt = 0.0036529424189253607 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.58119905053532 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3515849772206294, dt = 0.0036529424189253607
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 198.96 us (90.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (62.2%)
Info: cfl dt = 0.0036529427476102707 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.2641342541745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3552379196395548, dt = 0.0036529427476102707
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.42 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 203.05 us (90.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.3%)
Info: cfl dt = 0.0036529430848265014 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.29057608921757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.358890862387165, dt = 0.0036529430848265014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 209.04 us (91.1%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (53.9%)
Info: cfl dt = 0.003652943430758579 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.6111153892341 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3625438054719914, dt = 0.003652943430758579
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 223.52 us (91.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (56.7%)
Info: cfl dt = 0.0036529437855941775 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.83233183862849 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.36619674890275, dt = 0.0036529437855941775
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 225.22 us (91.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (64.1%)
Info: cfl dt = 0.003652944149524152 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1427e+05 | 65536 | 2 | 1.582e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.12782022027568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3698496926883441, dt = 0.003652944149524152
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 204.53 us (91.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (50.9%)
Info: cfl dt = 0.003652944522742582 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1139e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.55119702407228 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3735026368378682, dt = 0.003652944522742582
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 225.22 us (91.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (61.4%)
Info: cfl dt = 0.0036529449054468056 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.59773794451095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.377155581360611, dt = 0.0036529449054468056
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 230.77 us (92.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (61.0%)
Info: cfl dt = 0.0036529452978374594 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.17050785274868 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3808085262660577, dt = 0.0036529452978374594
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 219.60 us (91.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (58.7%)
Info: cfl dt = 0.0036529457001185164 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1791e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.85894638632536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3844614715638952, dt = 0.0036529457001185164
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 218.55 us (91.7%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (53.3%)
Info: cfl dt = 0.003652946112497327 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.90354830505689 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3881144172640136, dt = 0.003652946112497327
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 219.43 us (91.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (57.3%)
Info: cfl dt = 0.0036529465351846538 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.86604260658046 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3917673633765109, dt = 0.0036529465351846538
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.25 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 247.82 us (92.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (58.1%)
Info: cfl dt = 0.0036529469683947166 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1827e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.93158434585996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3954203099116955, dt = 0.0036529469683947166
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.0%)
patch tree reduce : 2.91 us (1.1%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 229.01 us (90.1%)
LB move op cnt : 0
LB apply : 3.86 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (60.0%)
Info: cfl dt = 0.0036529474123452267 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0632e+05 | 65536 | 2 | 1.613e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.53393080875539 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3990732568800903, dt = 0.0036529474123452267
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 202.42 us (91.2%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (54.6%)
Info: cfl dt = 0.003652947867257428 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1309e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.89174058812291 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4027262042924356, dt = 0.003652947867257428
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.33 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 195.96 us (90.9%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.9%)
Info: cfl dt = 0.003652948333356139 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0928e+05 | 65536 | 2 | 1.601e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.12732057270803 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.406379152159693, dt = 0.003652948333356139
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 211.19 us (91.3%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (56.9%)
Info: cfl dt = 0.003652948810869793 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.49083414115236 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.410032100493049, dt = 0.003652948810869793
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 204.09 us (91.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.6%)
Info: cfl dt = 0.003652949300030471 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.18756035366339 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4136850493039188, dt = 0.003652949300030471
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.33 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 200.39 us (90.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (60.8%)
Info: cfl dt = 0.0036529498010739545 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0613e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.49453260949566 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4173379986039494, dt = 0.0036529498010739545
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 201.75 us (91.0%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (53.1%)
Info: cfl dt = 0.0036529503142397556 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0419e+05 | 65536 | 2 | 1.621e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.10570126596235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4209909484050234, dt = 0.0036529503142397556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.37 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 214.95 us (91.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (59.0%)
Info: cfl dt = 0.0036529508397711635 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0318e+05 | 65536 | 2 | 1.625e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.90283353904928 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4246438987192631, dt = 0.0036529508397711635
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 209.86 us (91.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (54.0%)
Info: cfl dt = 0.003652951377915284 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0653e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.57583639930442 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4282968495590342, dt = 0.003652951377915284
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.33 us (1.0%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 218.32 us (91.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.1%)
Info: cfl dt = 0.003652951928923081 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.26005706381622 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4319498009369496, dt = 0.003652951928923081
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 206.73 us (91.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (54.3%)
Info: cfl dt = 0.0036529524930494165 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0259e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.78446802716147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4356027528658726, dt = 0.0036529524930494165
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 202.36 us (91.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.7%)
Info: cfl dt = 0.0036529530705530955 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.69158580866919 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4392557053589219, dt = 0.0036529530705530955
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.35 us (0.9%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.6%)
LB compute : 230.05 us (91.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (54.8%)
Info: cfl dt = 0.0036529536616969043 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0186e+05 | 65536 | 2 | 1.631e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.63908277666458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.442908658429475, dt = 0.0036529536616969043
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 232.94 us (92.2%)
LB move op cnt : 0
LB apply : 2.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (59.5%)
Info: cfl dt = 0.0036529542667476556 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.94630014912362 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.446561612091172, dt = 0.0036529542667476556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 213.44 us (90.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (53.1%)
Info: cfl dt = 0.0036529548859762285 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.2809479665502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4502145663579196, dt = 0.0036529548859762285
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 251.40 us (92.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (55.9%)
Info: cfl dt = 0.0036529555196576115 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7223e+05 | 65536 | 2 | 1.388e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.75979178784316 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4538675212438958, dt = 0.0036529555196576115
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 207.16 us (90.9%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.5%)
Info: cfl dt = 0.0036529561680709484 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.6706718094358 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4575204767635535, dt = 0.0036529561680709484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 215.40 us (91.3%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.3%)
Info: cfl dt = 0.0036529568314995716 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7709e+05 | 65536 | 2 | 1.374e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.73524954049078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4611734329316244, dt = 0.0036529568314995716
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 215.90 us (91.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (57.7%)
Info: cfl dt = 0.0036529575102310597 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6870e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.11668279218448 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.464826389763124, dt = 0.0036529575102310597
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 210.92 us (91.3%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (55.9%)
Info: cfl dt = 0.0036529582045572665 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7165e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.70874837901673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.468479347273355, dt = 0.0036529582045572665
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 188.05 us (90.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (56.0%)
Info: cfl dt = 0.003652958914774373 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8572e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.53306979406352 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4721323054779123, dt = 0.003652958914774373
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 205.68 us (91.3%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.3%)
Info: cfl dt = 0.0036529596411829287 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9668e+05 | 65536 | 2 | 1.098e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.73189046340573 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4757852643926868, dt = 0.0036529596411829287
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.8%)
patch tree reduce : 2.21 us (1.1%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 177.79 us (90.0%)
LB move op cnt : 0
LB apply : 3.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.1%)
Info: cfl dt = 0.0036529603840878932 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9140e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.67207548794867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4794382240338697, dt = 0.0036529603840878932
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.20 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 189.79 us (90.5%)
LB move op cnt : 0
LB apply : 3.39 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (55.0%)
Info: cfl dt = 0.0036529611437986806 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7858e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.09865875158012 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4830911844179575, dt = 0.0036529611437986806
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 203.20 us (90.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (54.7%)
Info: cfl dt = 0.0036529619206292097 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6436e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.24625909051844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4867441455617563, dt = 0.0036529619206292097
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.21 us (1.1%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 187.87 us (90.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (52.8%)
Info: cfl dt = 0.003652962714897939 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7751e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.88436967465049 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4903971074823854, dt = 0.003652962714897939
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 206.12 us (90.9%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (57.0%)
Info: cfl dt = 0.003652963526927916 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7728e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.83890182205438 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4940500701972834, dt = 0.003652963526927916
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 234.34 us (92.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (60.7%)
Info: cfl dt = 0.0036529643570468217 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7293e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.96596456579888 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4977030337242114, dt = 0.0036529643570468217
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 189.63 us (90.7%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (54.4%)
Info: cfl dt = 0.003652965205587013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9209e+05 | 65536 | 2 | 1.107e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.8099018448018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5013559980812583, dt = 0.003652965205587013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.4%)
patch tree reduce : 2.35 us (1.1%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 187.98 us (90.7%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (59.8%)
Info: cfl dt = 0.0036529660728855705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8764e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.91829579945872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5050089632868453, dt = 0.0036529660728855705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 226.00 us (91.7%)
LB move op cnt : 0
LB apply : 3.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (56.5%)
Info: cfl dt = 0.0036529669592843413 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7167e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.71314775710242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.508661929359731, dt = 0.0036529669592843413
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 208.23 us (91.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (56.4%)
Info: cfl dt = 0.003652967865129986 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8721e+05 | 65536 | 2 | 1.116e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.83132361219073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5123148963190154, dt = 0.003652967865129986
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 185.19 us (90.3%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (57.2%)
Info: cfl dt = 0.0036529687907740217 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6096e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.56363025256046 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5159678641841454, dt = 0.0036529687907740217
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 224.85 us (91.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (54.8%)
Info: cfl dt = 0.0036529697365728694 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.37300778213665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5196208329749195, dt = 0.0036529697365728694
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 211.28 us (91.3%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (59.2%)
Info: cfl dt = 0.003652970702887896 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5552e+05 | 65536 | 2 | 1.180e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.47303657822454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5232738027114923, dt = 0.003652970702887896
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 204.00 us (91.2%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (53.7%)
Info: cfl dt = 0.003652971690085468 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7254e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.88860600659922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.52692677341438, dt = 0.003652971690085468
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.7%)
LB compute : 186.09 us (90.3%)
LB move op cnt : 0
LB apply : 3.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.3%)
Info: cfl dt = 0.0036529726985369895 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7007e+05 | 65536 | 2 | 1.394e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.32598618793482 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5305797451044656, dt = 0.0036529726985369895
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 215.00 us (90.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (57.9%)
Info: cfl dt = 0.0036529737286189515 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6595e+05 | 65536 | 2 | 1.407e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.49835152171332 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5342327178030026, dt = 0.0036529737286189515
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 190.90 us (90.8%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.7%)
Info: cfl dt = 0.0036529747807129754 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6155e+05 | 65536 | 2 | 1.167e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.68259511822997 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5378856915316217, dt = 0.0036529747807129754
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.02 us (1.0%)
gen split merge : 962.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 186.40 us (90.8%)
LB move op cnt : 0
LB apply : 3.00 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (63.5%)
Info: cfl dt = 0.0036529758552058655 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6834e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.04459115126143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5415386663123347, dt = 0.0036529758552058655
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 194.82 us (90.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (53.5%)
Info: cfl dt = 0.0036529769524896475 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6741e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.85849282924428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5451916421675407, dt = 0.0036529769524896475
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 232.29 us (92.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (55.2%)
Info: cfl dt = 0.0036529780729616245 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8139e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.66430448935724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5488446191200302, dt = 0.0036529780729616245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 199.76 us (90.9%)
LB move op cnt : 0
LB apply : 3.45 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (57.0%)
Info: cfl dt = 0.003652979217024412 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7072e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.52282217304177 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.552497597192992, dt = 0.003652979217024412
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.19 us (1.1%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 186.71 us (90.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (52.6%)
Info: cfl dt = 0.003652980385085995 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7244e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.86719583040471 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5561505764100163, dt = 0.003652980385085995
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 193.52 us (90.8%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (59.5%)
Info: cfl dt = 0.003652981577559771 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8513e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.41532914789128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5598035567951023, dt = 0.003652981577559771
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 203.04 us (91.2%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (56.0%)
Info: cfl dt = 0.003652982794864595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8276e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.93833256694988 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.563456538372662, dt = 0.003652982794864595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 214.92 us (91.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.4%)
Info: cfl dt = 0.0036529840374248316 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7388e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.15742196979193 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5671095211675266, dt = 0.0036529840374248316
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 204.73 us (91.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (53.3%)
Info: cfl dt = 0.0036529853056703966 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6720e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.81585277142997 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5707625052049514, dt = 0.0036529853056703966
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.23 us (0.8%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 255.26 us (92.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (62.8%)
Info: cfl dt = 0.00365298660003681 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9226e+05 | 65536 | 2 | 1.331e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.77903356789149 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5744154905106218, dt = 0.00365298660003681
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 215.53 us (91.7%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (55.4%)
Info: cfl dt = 0.0036529879209652406 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3681e+05 | 65536 | 2 | 1.221e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.71922599250601 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5780684771106586, dt = 0.0036529879209652406
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 210.62 us (91.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (59.2%)
Info: cfl dt = 0.003652989268902553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6486e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.34733704781671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5817214650316238, dt = 0.003652989268902553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 196.90 us (90.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (59.0%)
Info: cfl dt = 0.003652990644301358 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8410e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.2083497286217 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5853744543005264, dt = 0.003652990644301358
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 190.14 us (90.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (52.7%)
Info: cfl dt = 0.0036529920476200584 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8966e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.32497480868517 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5890274449448278, dt = 0.0036529920476200584
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.33 us (1.1%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 187.60 us (90.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (59.9%)
Info: cfl dt = 0.0036529934793228976 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6878e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.13409705451764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5926804369924479, dt = 0.0036529934793228976
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 181.88 us (90.4%)
LB move op cnt : 0
LB apply : 2.97 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.5%)
Info: cfl dt = 0.0036529949398800077 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8715e+05 | 65536 | 2 | 1.116e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.81976641243018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5963334304717707, dt = 0.0036529949398800077
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 219.04 us (91.8%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.3%)
Info: cfl dt = 0.003652996429767459 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7437e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.25642757680305 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5999864254116507, dt = 0.003652996429767459
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.02 us (1.0%)
gen split merge : 1.14 us (0.6%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 185.67 us (90.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.0%)
Info: cfl dt = 0.0036529979494673045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8789e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.96939571881454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.603639421841418, dt = 0.0036529979494673045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 186.27 us (90.7%)
LB move op cnt : 0
LB apply : 2.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (56.8%)
Info: cfl dt = 0.0036529994994676353 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8869e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.12968713564842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6072924197908853, dt = 0.0036529994994676353
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 189.06 us (90.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (54.8%)
Info: cfl dt = 0.003653001080262621 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3146e+05 | 65536 | 2 | 1.233e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.64642457719113 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.610945419290353, dt = 0.003653001080262621
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.25 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 194.30 us (90.9%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (53.9%)
Info: cfl dt = 0.003653002692352563 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8200e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.7868912494235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6145984203706156, dt = 0.003653002692352563
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 185.33 us (90.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (52.7%)
Info: cfl dt = 0.003653004336243944 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7462e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.30551473784438 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.618251423062968, dt = 0.003653004336243944
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.27 us (1.1%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 185.99 us (90.4%)
LB move op cnt : 0
LB apply : 3.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.1%)
Info: cfl dt = 0.0036530060124494736 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8882e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.1549797687932 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.621904427399212, dt = 0.0036530060124494736
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.28 us (1.1%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 11.58 us (5.4%)
LB compute : 184.21 us (85.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (57.9%)
Info: cfl dt = 0.00365300772148814 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7567e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.51740032499475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6255574334116616, dt = 0.00365300772148814
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 231.38 us (92.3%)
LB move op cnt : 0
LB apply : 3.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.6%)
Info: cfl dt = 0.0036530094638852536 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6139e+05 | 65536 | 2 | 1.167e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.65175235952063 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6292104411331498, dt = 0.0036530094638852536
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 200.31 us (91.0%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (54.1%)
Info: cfl dt = 0.0036530112401725063 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7696e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.7764369905877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6328634505970352, dt = 0.0036530112401725063
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 199.68 us (90.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (58.2%)
Info: cfl dt = 0.00365301305088801 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7714e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.81308016439847 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6365164618372077, dt = 0.00365301305088801
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 204.77 us (91.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (61.4%)
Info: cfl dt = 0.0036530148965763505 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1263e+05 | 65536 | 2 | 1.278e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.86716345410001 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6401694748880957, dt = 0.0036530148965763505
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 212.42 us (91.3%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (58.7%)
Info: cfl dt = 0.0036530167777886384 [amr::basegodunov][rank=0]
Info: Timestep perf 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.454e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.41509645495698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.643822489784672, dt = 0.0036530167777886384
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 193.95 us (90.9%)
LB move op cnt : 0
LB apply : 2.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.3%)
Info: cfl dt = 0.003653018695082554 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0210e+05 | 65536 | 2 | 1.088e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.82051996150183 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6474755065624607, dt = 0.003653018695082554
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 234.96 us (92.2%)
LB move op cnt : 0
LB apply : 3.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (59.9%)
Info: cfl dt = 0.0036530206490224012 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.0308e+05 | 65536 | 2 | 1.303e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.95036312672747 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6511285252575432, dt = 0.0036530206490224012
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.37 us (0.6%)
LB compute : 215.35 us (90.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (55.5%)
Info: cfl dt = 0.0036530226401791524 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8467e+05 | 65536 | 2 | 1.352e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.25773056387551 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6547815459065656, dt = 0.0036530226401791524
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (3.0%)
patch tree reduce : 2.49 us (1.2%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.31 us (0.7%)
LB compute : 179.02 us (89.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (49.3%)
Info: cfl dt = 0.003653024669130505 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0863e+05 | 65536 | 2 | 1.077e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.13148058190819 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6584345685467448, dt = 0.003653024669130505
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.22 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 181.86 us (90.0%)
LB move op cnt : 0
LB apply : 3.31 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.5%)
Info: cfl dt = 0.0036530267364609198 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1193e+05 | 65536 | 2 | 1.071e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.79368947772544 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6620875932158752, dt = 0.0036530267364609198
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 223.53 us (91.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (56.4%)
Info: cfl dt = 0.0036530288427616834 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.0089e+05 | 65536 | 2 | 1.308e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.51161781049124 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6657406199523361, dt = 0.0036530288427616834
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 195.69 us (90.8%)
LB move op cnt : 0
LB apply : 3.39 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (58.2%)
Info: cfl dt = 0.003653030988630948 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1027e+05 | 65536 | 2 | 1.074e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.46196703481567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6693936487950978, dt = 0.003653030988630948
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 208.52 us (91.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (58.1%)
Info: cfl dt = 0.0036530331746737876 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9014e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.42110920643206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6730466797837287, dt = 0.0036530331746737876
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 204.84 us (91.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (60.6%)
Info: cfl dt = 0.0036530354015022405 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9603e+05 | 65536 | 2 | 1.321e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.53601543547799 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6766997129584025, dt = 0.0036530354015022405
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 971.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 188.33 us (90.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (54.8%)
Info: cfl dt = 0.0036530376697353688 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5405e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.18022492860104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6803527483599048, dt = 0.0036530376697353688
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 192.75 us (91.0%)
LB move op cnt : 0
LB apply : 2.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (51.7%)
Info: cfl dt = 0.0036530399799993003 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0230e+05 | 65536 | 2 | 1.088e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.86274652371156 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6840057860296402, dt = 0.0036530399799993003
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 195.58 us (90.9%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.2%)
Info: cfl dt = 0.0036530423329272825 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9266e+05 | 65536 | 2 | 1.106e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.92759756282555 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6876588260096395, dt = 0.0036530423329272825
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 12.93 us (4.9%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 232.50 us (88.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (58.5%)
Info: cfl dt = 0.0036530447291597307 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9446e+05 | 65536 | 2 | 1.102e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.28836967509966 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6913118683425667, dt = 0.0036530447291597307
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 212.50 us (91.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (59.5%)
Info: cfl dt = 0.003653047169344278 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5572e+05 | 65536 | 2 | 1.179e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.51566927394451 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6949649130717266, dt = 0.003653047169344278
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 188.19 us (90.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (55.5%)
Info: cfl dt = 0.0036530496541358278 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9758e+05 | 65536 | 2 | 1.097e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.91474999709035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.698617960241071, dt = 0.0036530496541358278
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 221.75 us (91.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (57.5%)
Info: cfl dt = 0.003653052184196598 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9035e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.46460396396465 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7022710098952067, dt = 0.003653052184196598
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.22 us (1.1%)
gen split merge : 961.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 186.33 us (90.6%)
LB move op cnt : 0
LB apply : 3.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (55.6%)
Info: cfl dt = 0.00365305476019618 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9183e+05 | 65536 | 2 | 1.107e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.76062077598061 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7059240620794034, dt = 0.00365305476019618
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.29 us (1.1%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.49 us (0.7%)
LB compute : 196.53 us (90.5%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (57.2%)
Info: cfl dt = 0.0036530573828115814 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8662e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.71531817126628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7095771168395997, dt = 0.0036530573828115814
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 193.79 us (90.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.2%)
Info: cfl dt = 0.0036530600527272788 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9638e+05 | 65536 | 2 | 1.099e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.67385699031013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7132301742224112, dt = 0.0036530600527272788
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 208.93 us (91.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (59.2%)
Info: cfl dt = 0.0036530627706352656 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9873e+05 | 65536 | 2 | 1.095e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.14623919682774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7168832342751386, dt = 0.0036530627706352656
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 209.05 us (91.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (53.9%)
Info: cfl dt = 0.003653065537235108 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8365e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.12001511457888 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7205362970457738, dt = 0.003653065537235108
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.8%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 180.96 us (90.3%)
LB move op cnt : 0
LB apply : 2.95 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (55.2%)
Info: cfl dt = 0.0036530683532339887 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0657e+05 | 65536 | 2 | 1.080e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.72011585922594 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.724189362583009, dt = 0.0036530683532339887
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.19 us (1.1%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 182.32 us (89.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (58.3%)
Info: cfl dt = 0.0036530712193467603 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7464e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.31284377717185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.727842430936243, dt = 0.0036530712193467603
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 208.56 us (91.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (61.3%)
Info: cfl dt = 0.0036530741362959963 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5501e+05 | 65536 | 2 | 1.181e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.3724304497638 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7314955021555898, dt = 0.0036530741362959963
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 221.05 us (91.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (57.6%)
Info: cfl dt = 0.003653077104812038 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.0590e+05 | 65536 | 2 | 1.295e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.51848832217631 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7351485762918857, dt = 0.003653077104812038
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 931.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 187.07 us (90.5%)
LB move op cnt : 0
LB apply : 2.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (57.1%)
Info: cfl dt = 0.003653080125633047 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9539e+05 | 65536 | 2 | 1.323e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.40884985503438 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7388016533966977, dt = 0.003653080125633047
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.44 us (1.2%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 182.15 us (89.8%)
LB move op cnt : 0
LB apply : 3.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (55.1%)
Info: cfl dt = 0.0036530831995050554 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9778e+05 | 65536 | 2 | 1.096e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.95669194194875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7424547335223308, dt = 0.0036530831995050554
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 205.05 us (91.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.2%)
Info: cfl dt = 0.0036530863271820157 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9326e+05 | 65536 | 2 | 1.105e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.04935404530372 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7461078167218358, dt = 0.0036530863271820157
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 217.67 us (91.6%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (52.8%)
Info: cfl dt = 0.0036530895094258518 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6041e+05 | 65536 | 2 | 1.169e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.4566979119261 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7497609030490178, dt = 0.0036530895094258518
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 233.18 us (91.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (54.6%)
Info: cfl dt = 0.0036530927470065054 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6114e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.60339895678784 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7534139925584435, dt = 0.0036530927470065054
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 216.63 us (91.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.5%)
Info: cfl dt = 0.0036530960407019923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3706e+05 | 65536 | 2 | 1.220e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.77207910951766 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.75706708530545, dt = 0.0036530960407019923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.35 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 208.09 us (91.3%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (54.3%)
Info: cfl dt = 0.003653099391298447 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6429e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.23575374028093 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.760720181346152, dt = 0.003653099391298447
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.13 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 232.47 us (92.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (58.3%)
Info: cfl dt = 0.0036531027995901763 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.91332636317631 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7643732807374504, dt = 0.0036531027995901763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.17 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 256.66 us (92.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.3%)
Info: cfl dt = 0.003653106266379707 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1331e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.93947312770682 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7680263835370404, dt = 0.003653106266379707
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 235.43 us (92.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (45.4%)
Info: cfl dt = 0.003653109792477839 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1420e+05 | 65536 | 2 | 1.582e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.11762967110009 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.77167948980342, dt = 0.003653109792477839
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 241.43 us (92.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (54.2%)
Info: cfl dt = 0.0036531133787036903 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1297e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.87023168039272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.775332599595898, dt = 0.0036531133787036903
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 208.05 us (91.5%)
LB move op cnt : 0
LB apply : 2.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.6%)
Info: cfl dt = 0.003653117025884755 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1878e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.0370152900043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7789857129746016, dt = 0.003653117025884755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.43 us (1.0%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 222.17 us (87.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.9%)
Info: cfl dt = 0.0036531207348569432 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.53196381280533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7826388300004863, dt = 0.0036531207348569432
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.51 us (1.1%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 202.73 us (90.8%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (52.5%)
Info: cfl dt = 0.0036531245064646404 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0819e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.9114369208015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7862919507353432, dt = 0.0036531245064646404
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 214.45 us (91.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (52.2%)
Info: cfl dt = 0.003653128341560753 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1489e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.25747686918612 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7899450752418078, dt = 0.003653128341560753
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 242.15 us (92.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.1%)
Info: cfl dt = 0.003653132241006756 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1574e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.42714622124147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7935982035833686, dt = 0.003653132241006756
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.0%)
patch tree reduce : 2.17 us (0.4%)
gen split merge : 1.07 us (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.2%)
LB compute : 526.70 us (96.3%)
LB move op cnt : 0
LB apply : 3.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (65.2%)
Info: cfl dt = 0.0036531362056727475 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0907e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.08912229497768 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7972513358243754, dt = 0.0036531362056727475
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 235.27 us (92.4%)
LB move op cnt : 0
LB apply : 3.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.1%)
Info: cfl dt = 0.003653140236437496 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1058e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.39277895343 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.800904472030048, dt = 0.003653140236437496
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 235.45 us (90.5%)
LB move op cnt : 0
LB apply : 4.90 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (64.0%)
Info: cfl dt = 0.0036531443341884895 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0658e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.58918303498128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8045576122664855, dt = 0.0036531443341884895
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.43 us (0.9%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 256.94 us (92.7%)
LB move op cnt : 0
LB apply : 3.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (59.5%)
Info: cfl dt = 0.003653148499821989 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1041e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.35753890441875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.808210756600674, dt = 0.003653148499821989
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.23 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 239.61 us (92.2%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (59.0%)
Info: cfl dt = 0.0036531527342430715 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.51692004234798 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8118639051004959, dt = 0.0036531527342430715
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 264.25 us (93.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (62.2%)
Info: cfl dt = 0.003653157038365687 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1719e+05 | 65536 | 2 | 1.571e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.71931302358306 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.815517057834739, dt = 0.003653157038365687
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 207.40 us (91.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (57.4%)
Info: cfl dt = 0.003653161413112704 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1314e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.90723285160746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8191702148731048, dt = 0.003653161413112704
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.71 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 204.12 us (91.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.2%)
Info: cfl dt = 0.0036531658594159567 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1395e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.0698532428318 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8228233762862176, dt = 0.0036531658594159567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 202.35 us (91.0%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (55.2%)
Info: cfl dt = 0.003653170378216301 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0640e+05 | 65536 | 2 | 1.613e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.55356578213583 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8264765421456335, dt = 0.003653170378216301
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 212.22 us (91.5%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (58.5%)
Info: cfl dt = 0.0036531749704636573 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.4440646358459 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8301297125238498, dt = 0.0036531749704636573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 211.35 us (91.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.6%)
Info: cfl dt = 0.0036531796371170643 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9462e+05 | 65536 | 2 | 1.661e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.19023352340254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8337828874943134, dt = 0.0036531796371170643
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.29 us (3.2%)
patch tree reduce : 2.22 us (0.8%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 239.84 us (91.1%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.1%)
Info: cfl dt = 0.003653184379144726 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.88320136098818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8374360671314305, dt = 0.003653184379144726
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.26 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 227.33 us (91.8%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.6%)
Info: cfl dt = 0.0036531891975240616 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0947e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.17100758140934 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8410892515105752, dt = 0.0036531891975240616
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 211.00 us (91.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.1%)
Info: cfl dt = 0.0036531940932417535 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0569e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.41262261944107 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8447424407080992, dt = 0.0036531940932417535
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 17.65 us (7.3%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 210.41 us (86.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (57.7%)
Info: cfl dt = 0.0036531990672937966 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0833e+05 | 65536 | 2 | 1.605e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.94107114401747 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.848395634801341, dt = 0.0036531990672937966
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 205.07 us (90.9%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.2%)
Info: cfl dt = 0.0036532041206855494 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1888e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.06024044092281 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.852048833868635, dt = 0.0036532041206855494
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 242.34 us (92.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (49.4%)
Info: cfl dt = 0.0036532092544317796 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1784e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.8510435438784 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8557020379893205, dt = 0.0036532092544317796
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 208.20 us (91.4%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.0%)
Info: cfl dt = 0.003653214469556714 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1446e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.17283493545183 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8593552472437522, dt = 0.003653214469556714
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.27 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 224.88 us (92.0%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.9%)
Info: cfl dt = 0.003653219767094088 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1649e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.57994949136031 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.863008461713309, dt = 0.003653219767094088
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 215.17 us (91.5%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (60.4%)
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 | 4.1490e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.26011757754297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.866661681480403, 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.56 us (2.5%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 206.92 us (91.3%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (52.1%)
Info: cfl dt = 0.003653230613588928 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0694e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.66331219409128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.87031490662849, dt = 0.003653230613588928
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.34 us (1.0%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 212.85 us (91.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (53.2%)
Info: cfl dt = 0.003653236164661838 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0963e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.20437150737709 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8739681372420791, dt = 0.003653236164661838
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.29 us (0.8%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 256.32 us (92.8%)
LB move op cnt : 0
LB apply : 3.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.5%)
Info: cfl dt = 0.003653241802378177 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0609e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.49402216142776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8776213734067408, dt = 0.003653241802378177
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.32 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 235.34 us (92.2%)
LB move op cnt : 0
LB apply : 3.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (56.4%)
Info: cfl dt = 0.0036532475278199437 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.46248881989024 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.881274615209119, dt = 0.0036532475278199437
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 203.95 us (91.3%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.7%)
Info: cfl dt = 0.0036532533420789355 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.45342673243407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.884927862736939, dt = 0.0036532533420789355
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 218.26 us (91.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (56.8%)
Info: cfl dt = 0.003653259246256795 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.14320962813768 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.888581116079018, dt = 0.003653259246256795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 203.94 us (91.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (56.7%)
Info: cfl dt = 0.00365326524146506 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.80456003034288 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8922343753252748, dt = 0.00365326524146506
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 206.96 us (91.2%)
LB move op cnt : 0
LB apply : 3.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (54.5%)
Info: cfl dt = 0.003653271328825204 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4044e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.38806360982636 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.89588764056674, dt = 0.003653271328825204
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 210.46 us (91.4%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (54.8%)
Info: cfl dt = 0.0036532775094686946 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.74366975600792 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8995409118955653, dt = 0.0036532775094686946
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 202.35 us (91.2%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (46.2%)
Info: cfl dt = 0.00365328378453703 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.22668232675132 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.903194189405034, dt = 0.00365328378453703
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 235.81 us (92.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.3%)
Info: cfl dt = 0.0036532901551817936 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.543511747859 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.906847473189571, dt = 0.0036532901551817936
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 197.24 us (91.1%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (56.8%)
Info: cfl dt = 0.003653296622564697 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5040e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.38653578947391 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9105007633447528, dt = 0.003653296622564697
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 203.71 us (91.1%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (53.8%)
Info: cfl dt = 0.0036533031878576315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2928e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.14865308569969 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9141540599673175, dt = 0.0036533031878576315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.41 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 230.27 us (92.0%)
LB move op cnt : 0
LB apply : 3.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (57.1%)
Info: cfl dt = 0.0036533098522427113 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.81384597138037 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.917807363155175, dt = 0.0036533098522427113
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 200.51 us (91.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (55.4%)
Info: cfl dt = 0.0036533166169123183 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.23167679531926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9214606730074177, dt = 0.0036533166169123183
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 204.52 us (91.4%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.8%)
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.5259e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.8269406126474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9251139896243301, 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.67 us (2.5%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 209.30 us (91.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (52.1%)
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 | 5.1920e+05 | 65536 | 2 | 1.262e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.19499133555112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9287673131073992, 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 : 5.51 us (2.3%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 220.97 us (91.9%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (49.2%)
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 | 5.8828e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.05893672417167 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9324206435593256, 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.57 us (2.0%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 252.49 us (92.7%)
LB move op cnt : 0
LB apply : 3.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (53.9%)
Info: cfl dt = 0.0036533447026457833 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8897e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.19673800155628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9360739810840328, dt = 0.0036533447026457833
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.26 us (0.9%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 237.18 us (91.9%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (58.5%)
Info: cfl dt = 0.0036533519869865138 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9928e+05 | 65536 | 2 | 1.094e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.2653544511715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9397273257866787, dt = 0.0036533519869865138
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 196.42 us (90.9%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.2%)
Info: cfl dt = 0.0036533593789843566 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7331e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.05527356024373 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9433806777736653, dt = 0.0036533593789843566
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 210.27 us (91.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.4%)
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 | 5.6443e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.27200931359093 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9470340371526496, 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.60 us (2.6%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 193.46 us (90.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (52.4%)
Info: cfl dt = 0.003653374491024312 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2654e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.60004716067331 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9506874040325544, dt = 0.003653374491024312
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 202.17 us (91.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (50.2%)
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 | 4.3633e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.56611680124128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9543407785235787, 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.35 us (2.1%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 232.90 us (92.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (56.8%)
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 | 4.8229e+05 | 65536 | 2 | 1.359e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.78858398243314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9579941607372082, 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.51 us (2.6%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 187.81 us (90.1%)
LB move op cnt : 0
LB apply : 3.54 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (57.4%)
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 | 5.7399e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.19154695357683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9616475507862263, 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.81 us (0.9%)
patch tree reduce : 2.15 us (0.3%)
gen split merge : 1.11 us (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.2%)
LB compute : 607.27 us (96.8%)
LB move op cnt : 0
LB apply : 3.06 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (56.9%)
Info: cfl dt = 0.0036534060633901665 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.83409439431671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.965300948784725, dt = 0.0036534060633901665
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 198.21 us (90.8%)
LB move op cnt : 0
LB apply : 3.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (55.1%)
Info: cfl dt = 0.0036534142450228117 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.81846082124387 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9689543548481152, dt = 0.0036534142450228117
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.43 us (1.1%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 203.45 us (91.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (54.2%)
Info: cfl dt = 0.003653422544737582 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.73524923307984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.972607769093138, dt = 0.003653422544737582
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 204.95 us (91.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.6%)
Info: cfl dt = 0.003653430963886422 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.17400900564856 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9762611916378756, dt = 0.003653430963886422
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 204.40 us (91.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.5%)
Info: cfl dt = 0.003653439503832277 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2972e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.24001001222331 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.979914622601762, dt = 0.003653439503832277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 206.31 us (91.2%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (57.0%)
Info: cfl dt = 0.0036534481659491313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1105e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.49410293626501 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9835680621055944, dt = 0.0036534481659491313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 197.43 us (90.9%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (57.4%)
Info: cfl dt = 0.003653456951622055 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8117e+05 | 65536 | 2 | 1.362e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.56635530710686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9872215102715436, dt = 0.003653456951622055
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 1.95 us (1.0%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 183.51 us (90.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (54.3%)
Info: cfl dt = 0.0036534658622472444 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8141e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.68305626515885 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9908749672231656, dt = 0.0036534658622472444
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 209.97 us (91.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (53.7%)
Info: cfl dt = 0.003653474899232072 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6969e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.330929058355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.994528433085413, dt = 0.003653474899232072
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 187.28 us (90.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.2%)
Info: cfl dt = 0.0036534840639951206 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7441e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.2795545532512 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.998181907984645, dt = 0.0018180920153549884
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 195.95 us (90.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.8%)
Info: cfl dt = 0.0036534886358937976 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4295e+05 | 65536 | 2 | 1.207e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.225117854028426 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1010.8012627610001 (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 : 3.41 us (51.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 : 851.00 ns (0.4%)
patch tree reduce : 1.13 us (0.5%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 213.70 us (95.8%)
LB move op cnt : 0
LB apply : 2.64 us (1.2%)
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 : 7.66 us (2.9%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 600.00 ns (0.2%)
LB compute : 242.52 us (92.8%)
LB move op cnt : 0
LB apply : 2.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (55.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 | 5.7226e+05 | 65536 | 2 | 1.145e-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.16 us (2.1%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 221.67 us (91.8%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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 | 5.8124e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.6322751647017 (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.31 us (2.4%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 201.70 us (91.1%)
LB move op cnt : 0
LB apply : 3.43 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (57.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 | 5.7255e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.88864098807058 (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.81 us (3.0%)
patch tree reduce : 2.09 us (1.1%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 175.54 us (89.9%)
LB move op cnt : 0
LB apply : 3.28 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.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 | 5.7085e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.54797768775879 (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.46 us (2.5%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 195.50 us (90.9%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (55.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.1821e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.91913130997473 (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.38 us (2.4%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 206.32 us (91.4%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (52.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.0229e+05 | 65536 | 2 | 1.629e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.72351095460591 (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.56 us (2.6%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 191.38 us (90.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (57.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.0905e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.08064562897334 (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.72 us (2.4%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 221.51 us (91.7%)
LB move op cnt : 0
LB apply : 2.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (54.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.0614e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.49680531520688 (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.69 us (2.5%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 210.40 us (91.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.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.9869e+05 | 65536 | 2 | 1.644e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.00083507737699 (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.48 us (2.6%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 187.98 us (90.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.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.0508e+05 | 65536 | 2 | 1.618e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.28423733540984 (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.69 us (2.5%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 204.28 us (91.2%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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.0418e+05 | 65536 | 2 | 1.621e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.10247401774446 (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.60 us (2.4%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 211.84 us (91.1%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.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.0336e+05 | 65536 | 2 | 1.625e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.93903990352568 (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.55 us (2.3%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 220.10 us (91.7%)
LB move op cnt : 0
LB apply : 3.48 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (60.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.0964e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.19830027436772 (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.19 us (2.2%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 219.58 us (91.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.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.0745e+05 | 65536 | 2 | 1.608e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.75999739341393 (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.80 us (2.4%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 221.86 us (91.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (55.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.0672e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.61304016855142 (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.63 us (2.1%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 251.18 us (92.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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.1254e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.78080945742285 (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.57 us (2.2%)
patch tree reduce : 2.26 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 233.03 us (91.9%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.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.1744e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.76363799475357 (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 : 7.55 us (3.6%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 188.29 us (89.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.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.2593e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.46703484567882 (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.40 us (2.2%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 220.38 us (91.7%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (58.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.1295e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.86297716559382 (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.57 us (2.4%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 197.96 us (86.2%)
LB move op cnt : 0
LB apply : 15.06 us (6.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (58.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.0356e+05 | 65536 | 2 | 1.624e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.97990147536409 (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.65 us (2.4%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 215.05 us (91.6%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (57.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 | 5.0665e+05 | 65536 | 2 | 1.294e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.66506318506063 (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.50 us (2.5%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 201.99 us (91.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.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.2898e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.0798017440285 (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.78 us (2.6%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 200.52 us (90.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (53.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.3522e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.33266523792398 (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.51 us (2.3%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 222.89 us (92.0%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (55.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.3027e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.33778090218485 (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.03 us (2.2%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 207.48 us (91.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.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.2829e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.94055446099144 (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.31 us (2.4%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 201.82 us (91.3%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (57.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.3200e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.68672482422973 (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.32 us (2.3%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 209.40 us (91.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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 | 4.1036e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.3437761209399 (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.42 us (2.4%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 205.42 us (91.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.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.5507e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.31545487284252 (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.15 us (2.2%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 214.90 us (91.9%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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 | 5.5279e+05 | 65536 | 2 | 1.186e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.92281256250565 (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.91 us (2.6%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 210.19 us (91.4%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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 | 5.6818e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.01134605466004 (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.08 us (2.9%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 185.74 us (89.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.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 | 5.9143e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.67820416504624 (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.53 us (2.7%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 187.80 us (90.7%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (48.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 | 5.8768e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.92399226476198 (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.54 us (1.8%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 286.26 us (93.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (55.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 | 5.8918e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.22612739770173 (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.62 us (2.1%)
patch tree reduce : 2.29 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 247.75 us (92.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (57.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 | 5.8729e+05 | 65536 | 2 | 1.116e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.84693542655734 (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.55 us (2.2%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 235.13 us (92.4%)
LB move op cnt : 0
LB apply : 3.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (52.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 | 5.7404e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.18799488352005 (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.74 us (2.3%)
patch tree reduce : 2.43 us (1.0%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 229.55 us (91.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (58.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 | 5.6362e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.09731828120324 (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.24 us (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 211.67 us (91.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (52.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 | 5.8983e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.35598654250887 (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.20 us (2.2%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 220.98 us (91.9%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.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.3432e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.15040064294219 (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.38 us (1.9%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 257.66 us (93.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (58.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 | 5.6095e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.56072945893509 (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.23 us (2.2%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 219.13 us (91.8%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.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 | 5.5430e+05 | 65536 | 2 | 1.182e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.22681113895229 (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 : 6.05 us (2.7%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 207.71 us (91.1%)
LB move op cnt : 0
LB apply : 3.61 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (58.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.8159e+05 | 65536 | 2 | 1.361e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.63619470020113 (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.48 us (2.4%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 208.38 us (91.5%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.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 | 5.6639e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.65233752656437 (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.20 us (2.5%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 184.73 us (90.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 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 | 5.9347e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.08755882678203 (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.13 us (2.1%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 225.60 us (92.1%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.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 | 5.6536e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.44538911164295 (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.54 us (2.6%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 191.26 us (90.6%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (58.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.8224e+05 | 65536 | 2 | 1.359e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.76701064447447 (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.05 us (1.1%)
patch tree reduce : 1.88 us (0.4%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 420.68 us (95.6%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (58.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 | 5.9124e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.63930566239783 (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.48 us (2.7%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.7%)
LB compute : 186.19 us (90.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (53.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 | 5.9164e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.72037666618877 (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.98 us (2.6%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 207.04 us (90.9%)
LB move op cnt : 0
LB apply : 3.75 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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 | 5.5754e+05 | 65536 | 2 | 1.175e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.87711606500208 (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.60 us (2.7%)
patch tree reduce : 1.84 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 186.88 us (90.6%)
LB move op cnt : 0
LB apply : 3.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (52.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 | 5.2425e+05 | 65536 | 2 | 1.250e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.19642578057272 (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.59 us (2.6%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 196.93 us (91.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.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 | 5.2865e+05 | 65536 | 2 | 1.240e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.07961395895661 (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.74 us (2.4%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 219.01 us (91.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (57.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 | 5.8271e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.92771626669688 (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.80 us (2.5%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 188.30 us (82.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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 | 5.8360e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.10549440565104 (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.38 us (2.6%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 892.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 188.87 us (90.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (57.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 | 5.7329e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.03737800931054 (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.33 us (2.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 201.81 us (91.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (53.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 | 5.6454e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.28200243784596 (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.29 us (2.5%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 189.95 us (90.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (53.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 | 5.7520e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.42106522900067 (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.63 us (3.0%)
patch tree reduce : 1.97 us (1.0%)
gen split merge : 991.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 171.07 us (89.8%)
LB move op cnt : 0
LB apply : 2.95 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.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 | 5.6391e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.15448990758561 (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.62 us (2.6%)
patch tree reduce : 2.33 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 193.19 us (90.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 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 | 5.7820e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.02230645556865 (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.45 us (2.2%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 232.76 us (92.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (53.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 | 5.9404e+05 | 65536 | 2 | 1.103e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.2010716277187 (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 : 16.82 us (7.0%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 208.31 us (87.0%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.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 | 5.9939e+05 | 65536 | 2 | 1.093e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.27467705402177 (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.51 us (2.5%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 204.90 us (91.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (58.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 | 5.9764e+05 | 65536 | 2 | 1.097e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.92405570381052 (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.62 us (2.6%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 200.91 us (91.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (52.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 | 5.0812e+05 | 65536 | 2 | 1.290e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.9605334920319 (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.30 us (2.6%)
patch tree reduce : 2.16 us (1.1%)
gen split merge : 1.13 us (0.6%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 186.20 us (90.6%)
LB move op cnt : 0
LB apply : 3.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (53.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.0015e+05 | 65536 | 2 | 1.638e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.29511989601075 (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.35 us (2.4%)
patch tree reduce : 2.51 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 207.21 us (91.4%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (56.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.9947e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.15819129445235 (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.36 us (2.6%)
patch tree reduce : 2.31 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 186.76 us (90.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (54.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.9550e+05 | 65536 | 2 | 1.657e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.36226749486516 (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.23 us (2.2%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 218.04 us (91.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (50.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 | 5.9357e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.1074676685781 (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.39 us (2.2%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 222.06 us (92.0%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (58.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 | 5.9064e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.51832258684377 (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.89 us (2.3%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 231.09 us (91.9%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.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 | 5.5115e+05 | 65536 | 2 | 1.189e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.59404508498122 (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.62 us (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 208.68 us (91.5%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (52.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 | 5.8596e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.58024907856205 (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.20 us (2.2%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 220.07 us (92.1%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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 | 5.8700e+05 | 65536 | 2 | 1.116e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.78898360345956 (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.53 us (2.7%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 187.91 us (90.5%)
LB move op cnt : 0
LB apply : 3.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (52.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 | 5.7327e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.032380866418 (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.36 us (2.6%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 183.97 us (90.3%)
LB move op cnt : 0
LB apply : 3.62 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (47.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 | 6.0294e+05 | 65536 | 2 | 1.087e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.98734685866415 (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.43 us (2.1%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 236.26 us (92.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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 | 5.9432e+05 | 65536 | 2 | 1.103e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.25664170043632 (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.59 us (2.7%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 190.59 us (90.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (54.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 | 5.7637e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.65605917910989 (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.66 us (2.7%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 188.30 us (90.5%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (56.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 | 5.6766e+05 | 65536 | 2 | 1.154e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.90772978834984 (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.39 us (2.7%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 183.00 us (90.4%)
LB move op cnt : 0
LB apply : 2.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (56.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 | 5.5910e+05 | 65536 | 2 | 1.172e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.18899761103722 (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.38 us (2.6%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 189.89 us (90.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (50.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 | 5.1702e+05 | 65536 | 2 | 1.268e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.74650437463174 (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.57 us (2.7%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 941.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 187.15 us (90.5%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 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 | 5.9071e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.53185635985668 (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.78 us (2.4%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 223.40 us (91.8%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.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 | 5.4753e+05 | 65536 | 2 | 1.197e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.86745354676158 (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.44 us (2.0%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 251.60 us (92.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.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 | 5.5192e+05 | 65536 | 2 | 1.187e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.74982069758919 (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.46 us (2.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 205.80 us (91.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.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.9017e+05 | 65536 | 2 | 1.337e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.35895572426612 (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.54 us (2.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 212.52 us (91.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.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 | 5.9472e+05 | 65536 | 2 | 1.102e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.33698751878312 (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.49 us (2.4%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 206.74 us (91.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (55.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 | 5.8153e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.69112045974326 (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.25 us (2.1%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 228.52 us (92.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 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 | 5.9233e+05 | 65536 | 2 | 1.106e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.8574474025771 (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.38 us (2.7%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 183.95 us (90.6%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.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.2507e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.29532051158793 (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 : 16.61 us (6.0%)
patch tree reduce : 2.43 us (0.9%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 247.31 us (88.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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.0909e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.08866824916917 (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.55 us (2.2%)
patch tree reduce : 2.30 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 234.41 us (92.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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.0125e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.51459426131623 (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.71 us (2.3%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 227.25 us (91.6%)
LB move op cnt : 0
LB apply : 3.97 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (54.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.2618e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.51754549265817 (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.57 us (2.3%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 218.04 us (91.7%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.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.2704e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.69055588537337 (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.60 us (2.3%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 227.55 us (91.9%)
LB move op cnt : 0
LB apply : 3.43 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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 | 4.1723e+05 | 65536 | 2 | 1.571e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.72287404028285 (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.65 us (2.3%)
patch tree reduce : 2.23 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 220.66 us (91.7%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (52.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.2571e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.42291795491508 (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.55 us (2.3%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 224.22 us (92.0%)
LB move op cnt : 0
LB apply : 2.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (51.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.2052e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.38222612034677 (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.35 us (2.3%)
patch tree reduce : 2.22 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 216.85 us (91.7%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (53.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.2766e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.81540809857356 (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.47 us (2.2%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 227.53 us (92.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (58.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.2888e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.05988318329057 (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.24 us (2.1%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 234.64 us (92.2%)
LB move op cnt : 0
LB apply : 3.58 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.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.6914e+05 | 65536 | 2 | 1.775e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.07258425975225 (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.91 us (2.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 205.30 us (91.2%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.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.2571e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.42407102626132 (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 : 5.55 us (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 219.08 us (91.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 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.2297e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.87441638668915 (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.46 us (2.5%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 197.01 us (91.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (52.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.1257e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.78695672787588 (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.48 us (2.4%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 206.12 us (91.4%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (50.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.1102e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.47591218432241 (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 : 16.77 us (7.0%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 208.52 us (87.2%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.4%)
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.1123e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.5186730812075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3579872878217817, 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.58 us (2.1%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 250.36 us (92.5%)
LB move op cnt : 0
LB apply : 3.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (54.8%)
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.8577e+05 | 65536 | 2 | 1.699e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.40895859434212 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3616402193301672, 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 : 6.09 us (2.7%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 204.26 us (91.0%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (56.3%)
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.9752e+05 | 65536 | 2 | 1.649e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.76632344220134 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36529315083855274, 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.80 us (2.3%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 234.89 us (91.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.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 | 5.9261e+05 | 65536 | 2 | 1.106e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.91426307142508 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36894608234693826, 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.59 us (2.6%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 195.20 us (90.9%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.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 | 5.8607e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.6026638125918 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3725990138553238, 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.59 us (2.5%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 204.77 us (91.3%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (55.5%)
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 | 5.9241e+05 | 65536 | 2 | 1.106e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.8737536594552 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3762519453637093, 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.58 us (2.7%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 190.37 us (90.8%)
LB move op cnt : 0
LB apply : 3.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (58.7%)
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 | 5.8802e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.99277091128765 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37990487687209484, 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.35 us (2.4%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 201.34 us (91.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (52.4%)
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 | 5.9040e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.46956617620137 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38355780838048037, 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.09 us (2.9%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 192.58 us (90.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.6%)
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 | 5.7973e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.32914144557634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3872107398888659, 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.55 us (2.1%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 240.36 us (92.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (56.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 | 5.9470e+05 | 65536 | 2 | 1.102e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.33279342300123 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3908636713972514, 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.08 us (2.5%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 186.89 us (90.8%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (58.1%)
Info: cfl dt = 0.003652931508385546 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6809e+05 | 65536 | 2 | 1.154e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.99283649048522 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39451660290563695, dt = 0.003652931508385546
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 210.67 us (89.3%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (56.3%)
Info: cfl dt = 0.0036529315083855497 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8119e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.62213157047789 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3981695344140225, dt = 0.0036529315083855497
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.12 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 221.56 us (87.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.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 | 5.7910e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.20234132993274 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.401822465922408, 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.61 us (2.6%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 192.47 us (90.6%)
LB move op cnt : 0
LB apply : 2.91 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.5%)
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 | 5.8655e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.69894858886414 (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.59 us (2.7%)
patch tree reduce : 2.24 us (1.1%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 188.51 us (90.6%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.6%)
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 | 5.7337e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.05323871287747 (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 : 6.04 us (2.5%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 221.95 us (91.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (57.6%)
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 | 5.8617e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.62247900299504 (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.96 us (2.4%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 224.53 us (91.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (54.7%)
Info: cfl dt = 0.0036529315083855787 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8577e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.54190928050363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4164341919559503, dt = 0.0036529315083855787
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 207.75 us (91.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (40.7%)
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 | 5.9268e+05 | 65536 | 2 | 1.106e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.9272625458083 (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.73 us (2.6%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 197.80 us (90.9%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (53.7%)
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.3650e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.58801937560015 (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.64 us (2.7%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 185.35 us (90.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (55.8%)
Info: cfl dt = 0.0036529315083856147 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6388e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.14878075564754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.427392986481107, dt = 0.0036529315083856147
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 244.31 us (92.5%)
LB move op cnt : 0
LB apply : 3.44 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.3%)
Info: cfl dt = 0.0036529315083856312 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5768e+05 | 65536 | 2 | 1.175e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.90402662067068 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43104591798949266, dt = 0.0036529315083856312
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 205.39 us (91.0%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (56.2%)
Info: cfl dt = 0.0036529315083856507 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8311e+05 | 65536 | 2 | 1.357e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.94191951406906 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4346988494978783, dt = 0.0036529315083856507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 202.03 us (91.1%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (53.6%)
Info: cfl dt = 0.0036529315083856737 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.18178471220355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43835178100626393, dt = 0.0036529315083856737
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 192.59 us (90.8%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (53.1%)
Info: cfl dt = 0.003652931508385701 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8822e+05 | 65536 | 2 | 1.342e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.96663738087916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4420047125146496, dt = 0.003652931508385701
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.86 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 191.66 us (90.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (59.5%)
Info: cfl dt = 0.003652931508385733 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8699e+05 | 65536 | 2 | 1.116e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.78559599559193 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4456576440230353, dt = 0.003652931508385733
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 195.18 us (90.9%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (56.4%)
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 | 4.5461e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.2224824321296 (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.42 us (2.6%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 188.46 us (90.6%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (52.7%)
Info: cfl dt = 0.003652931508385814 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8680e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.74768833801899 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4529635070398068, dt = 0.003652931508385814
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.02 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 182.05 us (90.1%)
LB move op cnt : 0
LB apply : 3.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (55.9%)
Info: cfl dt = 0.0036529315083858654 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8818e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.0256384713152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4566164385481926, dt = 0.0036529315083858654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 197.51 us (90.8%)
LB move op cnt : 0
LB apply : 3.39 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (59.0%)
Info: cfl dt = 0.003652931508385925 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4020e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.33131944288614 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4602693700565785, dt = 0.003652931508385925
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 220.82 us (91.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (58.5%)
Info: cfl dt = 0.0036529315083859933 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8945e+05 | 65536 | 2 | 1.339e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.21438328312867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4639223015649644, dt = 0.0036529315083859933
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 204.12 us (90.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (58.1%)
Info: cfl dt = 0.0036529315083860744 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8802e+05 | 65536 | 2 | 1.343e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.92688447714711 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46757523307335036, dt = 0.0036529315083860744
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 185.97 us (90.4%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (53.2%)
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 | 5.8351e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.08890648790077 (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.55 us (2.6%)
patch tree reduce : 2.26 us (1.1%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 191.56 us (90.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.4%)
Info: cfl dt = 0.003652931508386275 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8169e+05 | 65536 | 2 | 1.361e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.65653913055935 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47488109609012263, dt = 0.003652931508386275
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.20 us (1.1%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 185.83 us (90.5%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (54.4%)
Info: cfl dt = 0.0036529315083863993 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.01262256653281 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4785340275985089, dt = 0.0036529315083863993
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.38 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 206.05 us (91.1%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.4%)
Info: cfl dt = 0.003652931508386543 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.96209343132217 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4821869591068953, dt = 0.003652931508386543
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 209.26 us (91.5%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (54.8%)
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.4045e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.38211742619008 (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.39 us (2.4%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 200.60 us (91.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.6%)
Info: cfl dt = 0.0036529315083868967 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9068e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.52660656835404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4894928221236685, dt = 0.0036529315083868967
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.7%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 191.73 us (89.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (57.2%)
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 | 6.0123e+05 | 65536 | 2 | 1.090e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.64439920611096 (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.74 us (2.4%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 216.01 us (91.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (60.3%)
Info: cfl dt = 0.003652931508387362 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9089e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.56896964253245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49679868514044256, dt = 0.003652931508387362
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 225.36 us (91.7%)
LB move op cnt : 0
LB apply : 3.58 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (62.1%)
Info: cfl dt = 0.0036529315083876444 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9925e+05 | 65536 | 2 | 1.313e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.18083693304119 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.50045161664883, dt = 0.0036529315083876444
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.22 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 190.33 us (90.5%)
LB move op cnt : 0
LB apply : 3.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (53.6%)
Info: cfl dt = 0.0036529315083879683 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8581e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.54943317899446 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5041045481572176, dt = 0.0036529315083879683
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 189.02 us (90.7%)
LB move op cnt : 0
LB apply : 3.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.6%)
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 | 5.7425e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.23059647003764 (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.74 us (2.6%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 200.05 us (90.8%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.5%)
Info: cfl dt = 0.003652931508388756 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8680e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.74781485323048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5114104111739939, dt = 0.003652931508388756
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 259.47 us (92.8%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.6%)
Info: cfl dt = 0.003652931508389231 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0665e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.59929823709386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5150633426823826, dt = 0.003652931508389231
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.44 us (0.9%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 262.54 us (92.8%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (53.9%)
Info: cfl dt = 0.0036529315083897707 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.58877643208201 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5187162741907718, dt = 0.0036529315083897707
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 221.09 us (91.7%)
LB move op cnt : 0
LB apply : 3.69 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.1%)
Info: cfl dt = 0.003652931508390381 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1353e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.97978709571953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5223692056991616, dt = 0.003652931508390381
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 209.12 us (91.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.2%)
Info: cfl dt = 0.0036529315083910704 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1507e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.28862282228177 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.526022137207552, dt = 0.0036529315083910704
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.26 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.4%)
LB compute : 223.94 us (91.4%)
LB move op cnt : 0
LB apply : 3.78 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.6%)
Info: cfl dt = 0.0036529315083918498 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.4145672319744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.529675068715943, dt = 0.0036529315083918498
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 221.44 us (91.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (52.9%)
Info: cfl dt = 0.0036529315083927284 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9481e+05 | 65536 | 2 | 1.660e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.22229266444045 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5333280002243349, dt = 0.0036529315083927284
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 207.58 us (91.0%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.8%)
Info: cfl dt = 0.0036529315083937176 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0453e+05 | 65536 | 2 | 1.620e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.17399439492047 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5369809317327277, dt = 0.0036529315083937176
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 232.13 us (91.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (62.8%)
Info: cfl dt = 0.00365293150839483 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0594e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.45731566178368 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5406338632411214, dt = 0.00365293150839483
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 208.97 us (91.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (52.7%)
Info: cfl dt = 0.003652931508396079 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.59426435560279 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5442867947495162, dt = 0.003652931508396079
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.46 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 206.64 us (90.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.9%)
Info: cfl dt = 0.0036529315083974807 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0845e+05 | 65536 | 2 | 1.605e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.96019590931928 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5479397262579123, dt = 0.0036529315083974807
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.42 us (1.0%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 219.49 us (91.3%)
LB move op cnt : 0
LB apply : 3.59 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (54.3%)
Info: cfl dt = 0.0036529315083990493 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0252e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.76956056305235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5515926577663098, dt = 0.0036529315083990493
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 234.67 us (91.9%)
LB move op cnt : 0
LB apply : 3.75 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (60.1%)
Info: cfl dt = 0.003652931508400805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7997e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.37752652708834 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5552455892747089, dt = 0.003652931508400805
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 182.39 us (90.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (53.1%)
Info: cfl dt = 0.003652931508402767 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8036e+05 | 65536 | 2 | 1.364e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.38978445741874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5588985207831098, dt = 0.003652931508402767
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.22 us (1.1%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 185.00 us (90.1%)
LB move op cnt : 0
LB apply : 3.47 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.0%)
Info: cfl dt = 0.0036529315084049556 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9362e+05 | 65536 | 2 | 1.328e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.05023655929385 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5625514522915125, dt = 0.0036529315084049556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 251.12 us (92.6%)
LB move op cnt : 0
LB apply : 3.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (59.5%)
Info: cfl dt = 0.0036529315084073977 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.5430109770198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5662043837999174, dt = 0.0036529315084073977
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 206.03 us (90.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (59.2%)
Info: cfl dt = 0.003652931508410116 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.13304883261216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5698573153083248, dt = 0.003652931508410116
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 207.27 us (91.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (52.1%)
Info: cfl dt = 0.00365293150841314 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4178e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.64739289839433 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5735102468167349, dt = 0.00365293150841314
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 199.92 us (91.2%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.8%)
Info: cfl dt = 0.0036529315084165 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.87338883847183 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5771631783251481, dt = 0.0036529315084165
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 194.04 us (90.8%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (53.7%)
Info: cfl dt = 0.003652931508420229 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4655e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.60521779886612 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5808161098335646, dt = 0.003652931508420229
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 206.25 us (91.2%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (56.8%)
Info: cfl dt = 0.003652931508424364 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1937e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.15221358497458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5844690413419849, dt = 0.003652931508424364
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.53 us (1.1%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 216.66 us (91.4%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (61.4%)
Info: cfl dt = 0.0036529315084289442 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3047e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.37795768228142 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5881219728504092, dt = 0.0036529315084289442
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 221.92 us (92.0%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.3%)
Info: cfl dt = 0.003652931508434013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4248e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.78850176893144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5917749043588382, dt = 0.003652931508434013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 213.13 us (91.7%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.9%)
Info: cfl dt = 0.0036529315084396145 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3945e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.18078834425935 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5954278358672722, dt = 0.0036529315084396145
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 215.51 us (91.6%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (55.2%)
Info: cfl dt = 0.0036529315084458005 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.20934647682658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5990807673757118, dt = 0.0036529315084458005
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 204.60 us (91.5%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.0%)
Info: cfl dt = 0.0036529315084526245 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.76884239172294 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6027336988841576, dt = 0.0036529315084526245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 201.26 us (91.3%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (50.4%)
Info: cfl dt = 0.003652931508460146 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4422e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.13702573805959 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6063866303926102, dt = 0.003652931508460146
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 206.40 us (91.5%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (57.4%)
Info: cfl dt = 0.003652931508468427 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.20361166802326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6100395619010703, dt = 0.003652931508468427
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 198.56 us (91.0%)
LB move op cnt : 0
LB apply : 2.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (50.9%)
Info: cfl dt = 0.0036529315084775373 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3940e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.17060388043843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6136924934095388, dt = 0.0036529315084775373
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 253.75 us (92.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (57.3%)
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 | 4.1318e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.90837704539761 (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 : 5.45 us (2.5%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 200.11 us (91.1%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (55.8%)
Info: cfl dt = 0.003652931508498545 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3441e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.16927871435338 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6209983564265039, dt = 0.003652931508498545
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.23 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 217.59 us (91.1%)
LB move op cnt : 0
LB apply : 3.95 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (57.2%)
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.3558e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.40363468965522 (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.44 us (2.5%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 202.55 us (91.3%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (52.9%)
Info: cfl dt = 0.0036529315085238275 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3618e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.5244360479716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6283042194435131, dt = 0.0036529315085238275
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 195.81 us (90.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (55.1%)
Info: cfl dt = 0.003652931508538308 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2364e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.00768211302504 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.631957150952037, dt = 0.003652931508538308
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 195.67 us (86.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.5%)
Info: cfl dt = 0.0036529315085541527 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.90989586570717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6356100824605753, dt = 0.0036529315085541527
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 205.62 us (91.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.3%)
Info: cfl dt = 0.0036529315085714765 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2040e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.35772777759239 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6392630139691294, dt = 0.0036529315085714765
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 209.63 us (91.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.8%)
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 | 4.2269e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.81700254349562 (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.67 us (2.6%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 198.83 us (90.8%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (57.4%)
Info: cfl dt = 0.0036529315086110616 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1535e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.34560446476762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6465688769862913, dt = 0.0036529315086110616
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 199.54 us (91.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (59.5%)
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.3310e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.90605453692977 (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.81 us (2.7%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 197.41 us (90.9%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.2%)
Info: cfl dt = 0.003652931508658152 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.22137290779683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6538747400035358, dt = 0.003652931508658152
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 223.89 us (91.9%)
LB move op cnt : 0
LB apply : 3.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (59.1%)
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 | 4.2489e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.25808111241713 (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.41 us (2.5%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 194.95 us (90.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.1%)
Info: cfl dt = 0.003652931508713997 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2367e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.0132737065561 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6611806030208789, dt = 0.003652931508713997
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 200.65 us (91.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.7%)
Info: cfl dt = 0.0036529315087456406 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2968e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.22014826022465 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6648335345295929, dt = 0.0036529315087456406
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 236.41 us (92.1%)
LB move op cnt : 0
LB apply : 3.70 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (53.6%)
Info: cfl dt = 0.0036529315087800236 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2816e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.91598277145603 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6684864660383386, dt = 0.0036529315087800236
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 208.17 us (91.5%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.1%)
Info: cfl dt = 0.0036529315088173558 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.1184878310303 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6721393975471186, dt = 0.0036529315088173558
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 207.33 us (91.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (49.8%)
Info: cfl dt = 0.003652931508857861 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1793e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.86245508568533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.675792329055936, dt = 0.003652931508857861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 239.31 us (92.4%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (55.6%)
Info: cfl dt = 0.0036529315089017774 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2120e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.51951707392905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6794452605647938, dt = 0.0036529315089017774
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 220.35 us (91.8%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (58.2%)
Info: cfl dt = 0.003652931508949361 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2100e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.47751935855082 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6830981920736956, dt = 0.003652931508949361
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 216.59 us (91.6%)
LB move op cnt : 0
LB apply : 3.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.9%)
Info: cfl dt = 0.0036529315090008804 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.83710842825909 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.686751123582645, dt = 0.0036529315090008804
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 200.71 us (91.2%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.3%)
Info: cfl dt = 0.0036529315090566236 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.42387392869239 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6904040550916459, dt = 0.0036529315090566236
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 218.58 us (91.7%)
LB move op cnt : 0
LB apply : 2.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.0%)
Info: cfl dt = 0.0036529315091168965 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4447e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.1877732073018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6940569866007026, dt = 0.0036529315091168965
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 206.36 us (91.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (51.4%)
Info: cfl dt = 0.0036529315091820254 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.44702874996214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6977099181098195, dt = 0.0036529315091820254
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 197.94 us (90.9%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (52.5%)
Info: cfl dt = 0.0036529315092523554 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.16170899686128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7013628496190015, dt = 0.0036529315092523554
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 201.01 us (91.4%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.6%)
Info: cfl dt = 0.0036529315093282535 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3714e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.71618441976848 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7050157811282539, dt = 0.0036529315093282535
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 212.28 us (91.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (60.3%)
Info: cfl dt = 0.0036529315094101086 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.3376699813955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7086687126375821, dt = 0.0036529315094101086
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 201.06 us (91.1%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.6%)
Info: cfl dt = 0.003652931509498333 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2615e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.51219266635376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7123216441469923, dt = 0.003652931509498333
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 198.03 us (90.8%)
LB move op cnt : 0
LB apply : 3.40 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (61.7%)
Info: cfl dt = 0.003652931509593365 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.94173694421791 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7159745756564906, dt = 0.003652931509593365
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 2.01 us (0.3%)
gen split merge : 1.02 us (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.2%)
LB compute : 561.94 us (96.5%)
LB move op cnt : 0
LB apply : 3.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.6%)
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.4013e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.3178603900476 (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.30 us (2.2%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 219.84 us (91.9%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.4%)
Info: cfl dt = 0.0036529315098057275 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.31511764538905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7232804386757796, dt = 0.0036529315098057275
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 941.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 185.79 us (90.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.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 | 5.2695e+05 | 65536 | 2 | 1.244e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.7385203619265 (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.69 us (2.7%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 194.08 us (90.9%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (59.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 | 5.5259e+05 | 65536 | 2 | 1.186e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.88430666342661 (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.99 us (2.8%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 193.39 us (90.8%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.1%)
Info: cfl dt = 0.003652931510187813 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.97656129207357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7342392332055606, dt = 0.003652931510187813
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 199.60 us (90.9%)
LB move op cnt : 0
LB apply : 3.45 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.7%)
Info: cfl dt = 0.00365293151033441 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3737e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.76305450811412 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7378921647157485, dt = 0.00365293151033441
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 208.14 us (91.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.0%)
Info: cfl dt = 0.003652931510491676 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3102e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.49007292742466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7415450962260829, dt = 0.003652931510491676
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 236.24 us (92.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (55.9%)
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.3264e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.81366912598253 (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.66 us (2.5%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 202.28 us (91.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (54.7%)
Info: cfl dt = 0.0036529315108409827 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.48145476266936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7488509592472349, dt = 0.0036529315108409827
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 252.50 us (92.6%)
LB move op cnt : 0
LB apply : 3.90 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (58.6%)
Info: cfl dt = 0.003652931511034505 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2947e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.17841542406522 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7525038907580759, dt = 0.003652931511034505
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 201.76 us (90.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (52.6%)
Info: cfl dt = 0.0036529315112416613 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4846e+05 | 65536 | 2 | 1.195e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.0542368786221 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7561568222691104, dt = 0.0036529315112416613
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.29 us (0.6%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 189.75 us (90.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.2%)
Info: cfl dt = 0.0036529315114632956 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6213e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.79804516494097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7598097537803521, dt = 0.0036529315114632956
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.17 us (1.1%)
gen split merge : 1.14 us (0.6%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 181.67 us (89.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (57.5%)
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 | 5.7056e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.48861625146581 (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.53 us (2.7%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 183.18 us (90.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (55.7%)
Info: cfl dt = 0.0036529315119536057 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6324e+05 | 65536 | 2 | 1.164e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.02114535880087 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7671156168035157, dt = 0.0036529315119536057
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.28 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 234.02 us (91.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (57.3%)
Info: cfl dt = 0.0036529315122242013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7159e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.69564543760823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7707685483154693, dt = 0.0036529315122242013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 188.05 us (90.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (50.4%)
Info: cfl dt = 0.003652931512513123 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7844e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.07110363084104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7744214798276935, dt = 0.003652931512513123
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 185.61 us (90.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (59.0%)
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 | 5.7050e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.47827507535851 (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.56 us (2.6%)
patch tree reduce : 2.27 us (1.1%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 191.73 us (90.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.4%)
Info: cfl dt = 0.003652931513150355 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6547e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.4672899059679 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.781727342853028, dt = 0.003652931513150355
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 184.95 us (90.2%)
LB move op cnt : 0
LB apply : 3.00 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (52.4%)
Info: cfl dt = 0.0036529315135010133 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7458e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.29619566834096 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7853802743661784, dt = 0.0036529315135010133
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.92 us (2.1%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 213.40 us (91.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (55.1%)
Info: cfl dt = 0.0036529315138746975 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5715e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.79859777306095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7890332058796794, dt = 0.0036529315138746975
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.38 us (0.4%)
gen split merge : 1.09 us (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.2%)
LB compute : 517.63 us (96.0%)
LB move op cnt : 0
LB apply : 3.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (64.2%)
Info: cfl dt = 0.0036529315142727324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7153e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.68370462196178 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7926861373935541, dt = 0.0036529315142727324
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 207.97 us (91.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.1%)
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 | 5.3675e+05 | 65536 | 2 | 1.221e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.70453066111513 (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.23 us (2.5%)
patch tree reduce : 2.43 us (1.2%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 189.06 us (90.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (54.3%)
Info: cfl dt = 0.003652931515147488 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6632e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.63909881944691 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7999920004225233, dt = 0.003652931515147488
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 214.45 us (91.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.3%)
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 | 5.7957e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.29680580990282 (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 : 5.59 us (2.7%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 187.76 us (90.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (53.1%)
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.2209e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.69686131638767 (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 : 5.45 us (2.3%)
patch tree reduce : 2.23 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 217.53 us (91.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (57.3%)
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.0867e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.00413115118944 (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.60 us (2.5%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 199.63 us (90.9%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (51.6%)
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.0631e+05 | 65536 | 2 | 1.613e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.53088406872772 (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.71 us (2.5%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 208.64 us (91.4%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (52.8%)
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.1813e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.90346879040007 (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.56 us (2.1%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 243.56 us (92.6%)
LB move op cnt : 0
LB apply : 3.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.7%)
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.1853e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.9825118877169 (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.57 us (2.1%)
patch tree reduce : 13.58 us (5.2%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 229.97 us (88.0%)
LB move op cnt : 0
LB apply : 3.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (62.1%)
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.2285e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.84977293869801 (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.86 us (2.5%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 215.81 us (91.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (54.4%)
Info: cfl dt = 0.0036529315199342917 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.3038823175032 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8292154525589558, dt = 0.0036529315199342917
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.34 us (1.0%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 221.97 us (91.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.4%)
Info: cfl dt = 0.0036529315207083613 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.5530663775601 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8328683840788901, dt = 0.0036529315207083613
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 232.64 us (92.0%)
LB move op cnt : 0
LB apply : 3.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.7%)
Info: cfl dt = 0.0036529315215286027 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2763e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.80882163659287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8365213155995984, dt = 0.0036529315215286027
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 198.04 us (91.0%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (52.1%)
Info: cfl dt = 0.0036529315223974216 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1066e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.40457093832272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.840174247121127, dt = 0.0036529315223974216
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 223.67 us (91.7%)
LB move op cnt : 0
LB apply : 3.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (58.9%)
Info: cfl dt = 0.0036529315233173308 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2047e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.37256430191219 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8438271786435244, dt = 0.0036529315233173308
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 209.24 us (91.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.1%)
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 | 3.8856e+05 | 65536 | 2 | 1.687e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.96942141874523 (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.65 us (2.6%)
patch tree reduce : 2.44 us (1.1%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 195.52 us (90.6%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (63.0%)
Info: cfl dt = 0.0036529315253210222 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.82146565609808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8511330416911327, dt = 0.0036529315253210222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 199.55 us (91.0%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (50.3%)
Info: cfl dt = 0.003652931526410399 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1330e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.93336062234157 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8547859732164537, dt = 0.003652931526410399
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 218.85 us (91.9%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (61.1%)
Info: cfl dt = 0.0036529315275620616 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.34623191379458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8584389047428641, dt = 0.0036529315275620616
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 215.13 us (91.7%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (58.3%)
Info: cfl dt = 0.0036529315287791154 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9291e+05 | 65536 | 2 | 1.668e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.84255120677668 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8620918362704262, dt = 0.0036529315287791154
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.12 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 258.69 us (92.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (64.2%)
Info: cfl dt = 0.0036529315300647975 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.65947056739515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8657447677992053, dt = 0.0036529315300647975
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 238.65 us (92.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.1%)
Info: cfl dt = 0.0036529315314224806 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7932e+05 | 65536 | 2 | 1.728e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.11568075638039 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8693976993292701, dt = 0.0036529315314224806
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.60 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 216.57 us (92.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.6%)
Info: cfl dt = 0.003652931532855679 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9126e+05 | 65536 | 2 | 1.675e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.51066693634749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8730506308606926, dt = 0.003652931532855679
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 205.08 us (91.2%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.2%)
Info: cfl dt = 0.0036529315343680536 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.90275464441379 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8767035623935483, dt = 0.0036529315343680536
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 204.91 us (91.2%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (54.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.9331e+05 | 65536 | 2 | 1.666e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.92143724258324 (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.59 us (2.4%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 215.84 us (91.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (53.6%)
Info: cfl dt = 0.0036529315376457204 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1477e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.22767099829757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8840094254638798, dt = 0.0036529315376457204
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 205.63 us (91.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.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.9313e+05 | 65536 | 2 | 1.667e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.88528220012573 (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.47 us (2.4%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 208.12 us (91.4%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (53.7%)
Info: cfl dt = 0.0036529315412878495 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1208e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.6893349773467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8913152885409447, dt = 0.0036529315412878495
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 210.90 us (91.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.0%)
Info: cfl dt = 0.0036529315432564232 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.51065599473922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8949682200822325, dt = 0.0036529315432564232
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 206.88 us (91.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (51.4%)
Info: cfl dt = 0.0036529315453294625 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0545e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.35889971343461 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.898621151625489, dt = 0.0036529315453294625
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 218.94 us (91.8%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.0%)
Info: cfl dt = 0.003652931547511786 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9779e+05 | 65536 | 2 | 1.648e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.82074558849956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9022740831708184, dt = 0.003652931547511786
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 224.34 us (92.0%)
LB move op cnt : 0
LB apply : 3.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (57.4%)
Info: cfl dt = 0.0036529315498084044 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.23539813702783 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9059270147183301, dt = 0.0036529315498084044
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 208.16 us (91.6%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (54.9%)
Info: cfl dt = 0.003652931552224516 [amr::basegodunov][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.70370825136452 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9095799462681385, dt = 0.003652931552224516
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.27 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 209.73 us (91.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (52.8%)
Info: cfl dt = 0.0036529315547655277 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9166e+05 | 65536 | 2 | 1.673e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.59134563677519 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9132328778203631, dt = 0.0036529315547655277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 241.40 us (92.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.4%)
Info: cfl dt = 0.0036529315574370435 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.777585309244 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9168858093751286, dt = 0.0036529315574370435
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 214.76 us (91.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.8%)
Info: cfl dt = 0.0036529315602448847 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0630e+05 | 65536 | 2 | 1.613e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.52844006580152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9205387409325657, dt = 0.0036529315602448847
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 246.36 us (92.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (61.5%)
Info: cfl dt = 0.0036529315631950907 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0689e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.64638180063896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9241916724928106, dt = 0.0036529315631950907
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 229.11 us (92.0%)
LB move op cnt : 0
LB apply : 3.55 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.6%)
Info: cfl dt = 0.003652931566293927 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0567e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.40304836507576 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9278446040560058, dt = 0.003652931566293927
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.31 us (1.1%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 191.95 us (90.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.9%)
Info: cfl dt = 0.00365293156954789 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1067e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.40562689968704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9314975356222998, dt = 0.00365293156954789
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 208.06 us (91.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (53.0%)
Info: cfl dt = 0.003652931572963716 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.81811811308899 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9351504671918477, dt = 0.003652931572963716
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 199.13 us (90.9%)
LB move op cnt : 0
LB apply : 2.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (57.5%)
Info: cfl dt = 0.0036529315765483857 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1068e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.40751962755985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9388033987648114, dt = 0.0036529315765483857
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 214.70 us (91.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.8%)
Info: cfl dt = 0.003652931580309137 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1436e+05 | 65536 | 2 | 1.582e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.14670955297188 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9424563303413598, dt = 0.003652931580309137
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 195.38 us (90.6%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (53.2%)
Info: cfl dt = 0.003652931584253465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0565e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.3990974186579 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9461092619216689, dt = 0.003652931584253465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 195.69 us (90.7%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.2%)
Info: cfl dt = 0.0036529315883891355 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0477e+05 | 65536 | 2 | 1.619e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.22259341327494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9497621935059224, dt = 0.0036529315883891355
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 208.03 us (91.5%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (51.9%)
Info: cfl dt = 0.0036529315927241873 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0495e+05 | 65536 | 2 | 1.618e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.25811001780335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9534151250943115, dt = 0.0036529315927241873
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 199.23 us (90.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (52.7%)
Info: cfl dt = 0.003652931597266947 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1221e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.71384883880604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9570680566870357, dt = 0.003652931597266947
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 195.71 us (90.9%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (47.5%)
Info: cfl dt = 0.003652931602026031 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1267e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.8070886341214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9607209882843026, dt = 0.003652931602026031
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 872.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 199.34 us (90.7%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.6%)
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.1330e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.93324730055738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9643739198863287, 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.56 us (2.6%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.7%)
LB compute : 193.70 us (90.7%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (50.8%)
Info: cfl dt = 0.0036529316122291427 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0401e+05 | 65536 | 2 | 1.622e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.06865030960029 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.968026851493339, dt = 0.0036529316122291427
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.30 us (0.6%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 207.80 us (91.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (63.8%)
Info: cfl dt = 0.0036529316176919374 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1577e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.42955805839485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9716797831055681, dt = 0.0036529316176919374
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.39 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 233.72 us (92.1%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.3%)
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.1616e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.50692192866585 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9753327147232601, 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 : 6.95 us (3.2%)
patch tree reduce : 3.61 us (1.6%)
gen split merge : 1.53 us (0.7%)
split / merge op : 0/0
apply split merge : 1.55 us (0.7%)
LB compute : 195.02 us (88.8%)
LB move op cnt : 0
LB apply : 3.47 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.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.1477e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.2285041853914 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9789856463466687, 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.42 us (2.3%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 218.27 us (91.9%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (59.0%)
Info: cfl dt = 0.0036529316356447134 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.2651916002711 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9826385779760581, dt = 0.0036529316356447134
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 237.65 us (92.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (53.8%)
Info: cfl dt = 0.003652931642185594 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1739e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.75502032604761 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9862915096117029, dt = 0.003652931642185594
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 210.49 us (91.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.5%)
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.1533e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.34127045879038 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9899444412538885, 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 : 5.42 us (2.2%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 221.44 us (91.9%)
LB move op cnt : 0
LB apply : 3.48 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.4%)
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.2091e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.46138766875931 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9935973729029117, 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 : 5.82 us (1.1%)
patch tree reduce : 2.28 us (0.4%)
gen split merge : 1.17 us (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 513.87 us (96.1%)
LB move op cnt : 0
LB apply : 3.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (68.0%)
Info: cfl dt = 0.003652931663635802 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1074e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.41896919089066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.997250304559081, dt = 0.003652931663635802
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 212.65 us (91.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.1%)
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.1501e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.27718843921241 (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.49 us (2.2%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 229.35 us (92.0%)
LB move op cnt : 0
LB apply : 3.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (57.8%)
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.1938e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.15411614016645 (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.87 us (2.6%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 205.55 us (91.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.9%)
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.1220e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.71183956632187 (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.40 us (2.4%)
patch tree reduce : 2.42 us (1.1%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 206.26 us (91.4%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (60.3%)
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.2396e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.07149881942387 (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.90 us (2.7%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 198.93 us (90.9%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.8%)
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.1654e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.5840220311859 (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.99 us (2.7%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 204.82 us (91.1%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (53.9%)
Info: cfl dt = 0.0036529317158867443 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.9133412263424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0191678946649987, dt = 0.0036529317158867443
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 214.53 us (91.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (53.0%)
Info: cfl dt = 0.0036529317259666426 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9332e+05 | 65536 | 2 | 1.666e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.92400552032015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0228208263808853, dt = 0.0036529317259666426
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 253.05 us (92.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (55.9%)
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.7544e+05 | 65536 | 2 | 1.746e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.33592096530495 (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.95 us (2.4%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.34 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 228.13 us (91.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (55.4%)
Info: cfl dt = 0.003652931747436742 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0263e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.79295558937478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.03012668984333, dt = 0.003652931747436742
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 200.54 us (91.4%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (60.0%)
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.2158e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.59488391560585 (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.21 us (2.3%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 211.14 us (91.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (53.6%)
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.2363e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.0062136398796 (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.04 us (2.2%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 207.83 us (91.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (53.5%)
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.2364e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.00745247823008 (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.53 us (2.5%)
patch tree reduce : 2.33 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 204.29 us (91.2%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.0%)
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.1949e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.17522291612897 (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.54 us (2.5%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 203.64 us (91.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.8%)
Info: cfl dt = 0.0036529318095327792 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2384e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.04797623027773 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.048391348699633, dt = 0.0036529318095327792
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 234.18 us (92.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.3%)
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.1286e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.84607624023697 (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.25 us (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 210.31 us (91.6%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (53.8%)
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.0987e+05 | 65536 | 2 | 1.599e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.24539397520483 (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.49 us (2.5%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 200.19 us (90.9%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (55.5%)
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.0814e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.89730208296082 (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.73 us (2.7%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 194.20 us (90.7%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.8%)
Info: cfl dt = 0.003652931869073858 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.449815444224 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0630030760241085, dt = 0.003652931869073858
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 196.70 us (91.0%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (62.0%)
Info: cfl dt = 0.0036529318854949173 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.11657591421273 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0666560078931824, dt = 0.0036529318854949173
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 220.53 us (91.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.2%)
Info: cfl dt = 0.003652931902573314 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.9680747245454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0703089397786774, dt = 0.003652931902573314
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 208.24 us (91.1%)
LB move op cnt : 0
LB apply : 3.51 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (60.1%)
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.2220e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.71895876935702 (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.50 us (2.1%)
patch tree reduce : 2.17 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 237.08 us (92.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.6%)
Info: cfl dt = 0.0036529319387931564 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2338e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.95694930565243 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0776148036015822, dt = 0.0036529319387931564
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 215.83 us (91.8%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (54.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.0871e+05 | 65536 | 2 | 1.603e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.01157240878044 (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.66 us (2.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 219.10 us (91.8%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (50.8%)
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.1236e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.74492772812025 (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.88 us (2.4%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 220.63 us (91.5%)
LB move op cnt : 0
LB apply : 2.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (55.6%)
Info: cfl dt = 0.003652931998639131 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0605e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.47915437030302 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.088573599476279, dt = 0.003652931998639131
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 202.72 us (91.2%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (56.8%)
Info: cfl dt = 0.0036529320201591563 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2047e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.37152947378178 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0922265314749182, dt = 0.0036529320201591563
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 210.50 us (91.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.7%)
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.1639e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.55261223120193 (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 : 5.40 us (2.4%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 206.37 us (91.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (56.2%)
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.0895e+05 | 65536 | 2 | 1.603e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.06073697670723 (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.41 us (2.1%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 232.52 us (92.3%)
LB move op cnt : 0
LB apply : 3.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (62.9%)
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.1163e+05 | 65536 | 2 | 1.592e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.59784225470231 (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.37 us (2.1%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 240.99 us (92.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (58.7%)
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.1536e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.3465759425122 (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 : 5.30 us (2.4%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 205.52 us (91.2%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.4%)
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.1354e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.98219275064054 (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.56 us (2.1%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 247.70 us (92.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (54.9%)
Info: cfl dt = 0.0036529321676859634 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0015e+05 | 65536 | 2 | 1.638e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.29523724315942 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1141441239486831, dt = 0.0036529321676859634
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 215.84 us (91.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (54.7%)
Info: cfl dt = 0.00365293219561532 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.66712036950796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.117797056116369, dt = 0.00365293219561532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 198.53 us (91.1%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (55.3%)
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.1593e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.46054544254048 (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.63 us (2.5%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 204.77 us (91.2%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (49.3%)
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.0069e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.40378534124562 (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.41 us (2.1%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 237.32 us (92.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (52.6%)
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.0655e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.57808872589261 (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.52 us (2.3%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 214.82 us (91.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (57.2%)
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.0927e+05 | 65536 | 2 | 1.601e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.1255336715842 (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 : 5.55 us (2.3%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 221.60 us (91.8%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (59.5%)
Info: cfl dt = 0.0036529323515011136 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1359e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.99249585805964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1360617173949938, dt = 0.0036529323515011136
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 210.08 us (91.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.6%)
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.0047e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.35989139642427 (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.31 us (2.3%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 211.95 us (91.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.0%)
Info: cfl dt = 0.0036529324220866536 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1008e+05 | 65536 | 2 | 1.598e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.28789994886746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1433675821326643, dt = 0.0036529324220866536
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 197.64 us (90.8%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (54.2%)
Info: cfl dt = 0.0036529324592914176 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9527e+05 | 65536 | 2 | 1.658e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.31611821126018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.147020514554751, dt = 0.0036529324592914176
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 209.56 us (91.4%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (57.0%)
Info: cfl dt = 0.003652932497823083 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9829e+05 | 65536 | 2 | 1.645e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.92143583584811 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1506734470140423, dt = 0.003652932497823083
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 209.56 us (91.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (54.2%)
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.0113e+05 | 65536 | 2 | 1.634e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.49172541648478 (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.72 us (2.5%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 212.78 us (91.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (57.7%)
Info: cfl dt = 0.003652932579029789 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0264e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.79449966853807 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1579793120495876, dt = 0.003652932579029789
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 212.06 us (91.6%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (57.3%)
Info: cfl dt = 0.003652932621788712 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0178e+05 | 65536 | 2 | 1.631e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.62124407216649 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1616322446286174, dt = 0.003652932621788712
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 196.16 us (90.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (53.9%)
Info: cfl dt = 0.0036529326660423387 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.67976057875367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.165285177250406, dt = 0.0036529326660423387
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 206.46 us (91.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (53.3%)
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.1104e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.48030941531967 (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.53 us (2.5%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 200.41 us (91.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.8%)
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 | 4.1232e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.7359454537113 (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.60 us (2.2%)
patch tree reduce : 2.21 us (0.9%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 240.14 us (92.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (53.1%)
Info: cfl dt = 0.0036529328082226795 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.57933293833672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.176243975387497, dt = 0.0036529328082226795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 237.88 us (92.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (59.1%)
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 | 4.1060e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.39196845852057 (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.54 us (2.4%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 206.63 us (91.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (57.2%)
Info: cfl dt = 0.0036529329113297914 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1488e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.25065781106431 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1835498410546315, dt = 0.0036529329113297914
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 224.52 us (91.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (57.0%)
Info: cfl dt = 0.0036529329655266185 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1529e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.33342879276357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1872027739659612, dt = 0.0036529329655266185
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 220.37 us (91.9%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (56.6%)
Info: cfl dt = 0.003652933021553797 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1734e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.74467208078651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1908557069314878, dt = 0.003652933021553797
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 200.06 us (91.4%)
LB move op cnt : 0
LB apply : 3.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (57.9%)
Info: cfl dt = 0.003652933079463972 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1635e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.54539489809682 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1945086399530416, dt = 0.003652933079463972
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 216.94 us (91.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (59.7%)
Info: cfl dt = 0.0036529331393110247 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.61157533317143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1981615730325055, dt = 0.0036529331393110247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 219.68 us (91.8%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.0%)
Info: cfl dt = 0.0036529332011500967 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1180e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.63297358741288 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2018145061718164, dt = 0.0036529332011500967
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 215.85 us (91.9%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (56.2%)
Info: cfl dt = 0.0036529332650376122 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9860e+05 | 65536 | 2 | 1.644e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.98316133624698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2054674393729665, dt = 0.0036529332650376122
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 206.06 us (91.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (53.1%)
Info: cfl dt = 0.003652933331031302 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.72792233481096 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2091203726380042, dt = 0.003652933331031302
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 204.35 us (91.3%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (59.7%)
Info: cfl dt = 0.003652933399190223 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.81966278587326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2127733059690355, dt = 0.003652933399190223
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 195.45 us (91.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (60.3%)
Info: cfl dt = 0.0036529334695747833 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.49704799923447 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2164262393682257, dt = 0.0036529334695747833
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 200.04 us (90.8%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (54.8%)
Info: cfl dt = 0.0036529335422467676 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2615e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.51144897135617 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2200791728378004, dt = 0.0036529335422467676
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 243.35 us (92.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (57.2%)
Info: cfl dt = 0.0036529336172693564 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1307e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.88751052367043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2237321063800473, dt = 0.0036529336172693564
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 203.10 us (91.0%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (55.2%)
Info: cfl dt = 0.0036529336947071544 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2242e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.76320900856203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2273850399973165, dt = 0.0036529336947071544
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 237.83 us (92.5%)
LB move op cnt : 0
LB apply : 3.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (59.7%)
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.1629e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.53425938326967 (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 : 5.51 us (2.4%)
patch tree reduce : 2.33 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 206.84 us (91.2%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (51.7%)
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 | 4.1227e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.72674835141352 (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 : 5.49 us (2.3%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 217.36 us (91.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (59.0%)
Info: cfl dt = 0.003652933942179681 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0908e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.08647363436181 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.238343841323744, dt = 0.003652933942179681
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 245.88 us (92.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (57.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.7843e+05 | 65536 | 2 | 1.732e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.93644877069401 (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 : 6.06 us (2.6%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 216.25 us (91.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.7%)
Info: cfl dt = 0.0036529341204880293 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1123e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.51891179036085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2456497092958771, dt = 0.0036529341204880293
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 205.53 us (91.2%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (56.2%)
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.0867e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.00507121200744 (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 : 4.97 us (2.2%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 201.79 us (90.9%)
LB move op cnt : 0
LB apply : 4.24 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (56.9%)
Info: cfl dt = 0.003652934310134252 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9071e+05 | 65536 | 2 | 1.677e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.400293119187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2529555776302217, dt = 0.003652934310134252
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 239.57 us (92.2%)
LB move op cnt : 0
LB apply : 3.72 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (61.5%)
Info: cfl dt = 0.0036529344093982163 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0162e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.59028188962095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.256608511940356, dt = 0.0036529344093982163
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 203.26 us (91.1%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.3%)
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 | 3.9558e+05 | 65536 | 2 | 1.657e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.37677138470684 (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.43 us (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 200.46 us (91.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (52.1%)
Info: cfl dt = 0.0036529346172004887 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9655e+05 | 65536 | 2 | 1.653e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.57227027552611 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2639143808614812, dt = 0.0036529346172004887
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 201.29 us (91.2%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.5%)
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 | 3.9785e+05 | 65536 | 2 | 1.647e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.83353753807705 (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.73 us (2.5%)
patch tree reduce : 2.58 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.71 us (0.8%)
LB compute : 206.17 us (90.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (60.0%)
Info: cfl dt = 0.003652934837911743 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6659e+05 | 65536 | 2 | 1.405e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.62719199334101 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2712202502045826, dt = 0.003652934837911743
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.45 us (1.2%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 185.94 us (90.0%)
LB move op cnt : 0
LB apply : 2.91 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (52.8%)
Info: cfl dt = 0.003652934953318421 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9253e+05 | 65536 | 2 | 1.106e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.89863564466961 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2748731850424944, dt = 0.003652934953318421
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 191.93 us (90.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (58.5%)
Info: cfl dt = 0.003652935072208099 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8282e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.94916529187336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.278526119995813, dt = 0.003652935072208099
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.21 us (0.8%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 267.57 us (93.1%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (61.4%)
Info: cfl dt = 0.0036529351946697577 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2933e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.1506365291556 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.282179055068021, dt = 0.0036529351946697577
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 205.45 us (91.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (62.9%)
Info: cfl dt = 0.003652935320794222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1865e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.0063449641534 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2858319902626907, dt = 0.003652935320794222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.45 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 203.83 us (91.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (53.7%)
Info: cfl dt = 0.0036529354506741806 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5669e+05 | 65536 | 2 | 1.177e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.70715648393553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2894849255834848, dt = 0.0036529354506741806
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 202.90 us (91.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.4%)
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 | 5.4350e+05 | 65536 | 2 | 1.206e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.06041650147601 (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.14 us (2.2%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 219.50 us (91.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (54.3%)
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 | 5.6974e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.32452100490795 (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 : 5.35 us (2.0%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 241.67 us (92.4%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (55.7%)
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 | 5.7047e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.47103294299161 (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.25 us (2.3%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 210.19 us (91.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (57.8%)
Info: cfl dt = 0.0036529360096697995 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7505e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.39030832929697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3040966682044468, dt = 0.0036529360096697995
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 200.11 us (91.1%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (59.9%)
Info: cfl dt = 0.003652936159785014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7923e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.23017983265945 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3077496042141166, dt = 0.003652936159785014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 217.27 us (91.9%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (52.2%)
Info: cfl dt = 0.0036529363142527287 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8924e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.23761568375683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3114025403739016, dt = 0.0036529363142527287
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 226.43 us (92.0%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (61.3%)
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 | 5.5693e+05 | 65536 | 2 | 1.177e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.75452825468089 (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.42 us (2.3%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 215.98 us (91.7%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (53.7%)
Info: cfl dt = 0.003652936636674101 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4612e+05 | 65536 | 2 | 1.200e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.5860065819604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3187084131613338, dt = 0.003652936636674101
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 220.55 us (91.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (57.3%)
Info: cfl dt = 0.003652936804847276 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6339e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.05138202594003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.322361349798008, dt = 0.003652936804847276
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 220.53 us (90.7%)
LB move op cnt : 0
LB apply : 5.59 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.6%)
Info: cfl dt = 0.0036529369778120434 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7423e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.22532858817995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3260142866028553, dt = 0.0036529369778120434
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.26 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 221.70 us (91.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (55.0%)
Info: cfl dt = 0.0036529371556835934 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6940e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.25782373392106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3296672235806672, dt = 0.0036529371556835934
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 240.29 us (92.2%)
LB move op cnt : 0
LB apply : 3.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (59.1%)
Info: cfl dt = 0.0036529373385793444 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5831e+05 | 65536 | 2 | 1.174e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.03137900743621 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3333201607363507, dt = 0.0036529373385793444
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 221.57 us (91.8%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (53.7%)
Info: cfl dt = 0.003652937526618974 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4859e+05 | 65536 | 2 | 1.195e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.08164092200288 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3369730980749301, dt = 0.003652937526618974
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.19 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 188.50 us (90.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.3%)
Info: cfl dt = 0.0036529377199244553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7904e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.1916096612262 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3406260356015491, dt = 0.0036529377199244553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 246.41 us (92.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.6%)
Info: cfl dt = 0.0036529379186200847 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6921e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.2182312554227 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3442789733214735, dt = 0.0036529379186200847
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.17 us (1.1%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 186.56 us (90.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (54.0%)
Info: cfl dt = 0.0036529381228325177 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8854e+05 | 65536 | 2 | 1.341e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.03043431282964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3479319112400936, dt = 0.0036529381228325177
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (3.0%)
patch tree reduce : 2.41 us (1.2%)
gen split merge : 1.46 us (0.7%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 181.47 us (89.3%)
LB move op cnt : 0
LB apply : 3.31 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (56.6%)
Info: cfl dt = 0.0036529383326907986 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8069e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.52282275495553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.351584849362926, dt = 0.0036529383326907986
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 211.49 us (90.6%)
LB move op cnt : 0
LB apply : 3.57 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (62.4%)
Info: cfl dt = 0.0036529385483263944 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9371e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.13404856539127 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.355237787695617, dt = 0.0036529385483263944
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 194.50 us (90.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (57.3%)
Info: cfl dt = 0.0036529387698732295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8559e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.50631666028737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3588907262439434, dt = 0.0036529387698732295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
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.38 us (0.5%)
LB compute : 245.87 us (92.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.2%)
Info: cfl dt = 0.0036529389974677214 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6535e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.44476222041163 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3625436650138165, dt = 0.0036529389974677214
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 219.47 us (92.0%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (51.0%)
Info: cfl dt = 0.003652939231248807 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0516e+05 | 65536 | 2 | 1.618e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.29922313695656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3661966040112843, dt = 0.003652939231248807
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 235.39 us (92.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (54.9%)
Info: cfl dt = 0.0036529394713579843 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0235e+05 | 65536 | 2 | 1.629e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.73624190765122 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.369849543242533, dt = 0.0036529394713579843
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 249.94 us (92.6%)
LB move op cnt : 0
LB apply : 3.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (50.4%)
Info: cfl dt = 0.0036529397179393425 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.68959604927284 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.373502482713891, dt = 0.0036529397179393425
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 227.95 us (92.1%)
LB move op cnt : 0
LB apply : 3.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (56.1%)
Info: cfl dt = 0.0036529399711395993 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2035e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.347904818973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3771554224318305, dt = 0.0036529399711395993
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.37 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 231.61 us (91.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.8%)
Info: cfl dt = 0.0036529402311081317 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.79230650890527 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3808083624029701, dt = 0.0036529402311081317
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.25 us (0.8%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 245.61 us (92.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (57.9%)
Info: cfl dt = 0.003652940497997016 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1410e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.09406097925017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3844613026340782, dt = 0.003652940497997016
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 209.02 us (91.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (60.0%)
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.0544e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.35613606171918 (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.46 us (2.2%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 223.50 us (92.1%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (58.8%)
Info: cfl dt = 0.0036529410531578404 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1798e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.87348923517969 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3917671839040362, dt = 0.0036529410531578404
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 219.52 us (91.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.0%)
Info: cfl dt = 0.003652941341747737 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1989e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.25515862543543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.395420124957194, dt = 0.003652941341747737
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.22 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 221.23 us (91.9%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (56.1%)
Info: cfl dt = 0.003652941637893969 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9318e+05 | 65536 | 2 | 1.667e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.89713079517561 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3990730662989417, dt = 0.003652941637893969
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 202.05 us (91.2%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (54.3%)
Info: cfl dt = 0.0036529419417626325 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.2973755474413 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4027260079368356, dt = 0.0036529419417626325
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 261.58 us (92.9%)
LB move op cnt : 0
LB apply : 3.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (58.2%)
Info: cfl dt = 0.003652942253522737 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4098e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.4874037405146 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4063789498785981, dt = 0.003652942253522737
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 239.74 us (92.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (56.8%)
Info: cfl dt = 0.0036529425733462413 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6368e+05 | 65536 | 2 | 1.413e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.04388149285965 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4100318921321209, dt = 0.0036529425733462413
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 227.34 us (92.1%)
LB move op cnt : 0
LB apply : 3.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (50.0%)
Info: cfl dt = 0.0036529429014080916 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.1240294176764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4136848347054671, dt = 0.0036529429014080916
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 208.27 us (91.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (60.4%)
Info: cfl dt = 0.003652943237886258 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.97770598397393 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4173377776068752, dt = 0.003652943237886258
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 235.33 us (92.3%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (54.7%)
Info: cfl dt = 0.0036529435829617735 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1252e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.77746163081554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4209907208447614, dt = 0.0036529435829617735
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.38 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 263.35 us (93.1%)
LB move op cnt : 0
LB apply : 3.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (55.6%)
Info: cfl dt = 0.0036529439368187693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1159e+05 | 65536 | 2 | 1.592e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.5903832283137 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4246436644277232, dt = 0.0036529439368187693
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 234.28 us (90.8%)
LB move op cnt : 0
LB apply : 6.86 us (2.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.0%)
Info: cfl dt = 0.003652944299644516 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.98011978731577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4282966083645419, dt = 0.003652944299644516
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 234.62 us (92.2%)
LB move op cnt : 0
LB apply : 3.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (54.5%)
Info: cfl dt = 0.00365294467162946 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9384e+05 | 65536 | 2 | 1.664e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.02851804107424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4319495526641863, dt = 0.00365294467162946
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.18 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 242.95 us (92.5%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (57.4%)
Info: cfl dt = 0.003652945052967263 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.94163310319719 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4356024973358157, dt = 0.003652945052967263
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 224.58 us (91.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (56.6%)
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 | 3.9763e+05 | 65536 | 2 | 1.648e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.78944626834989 (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.48 us (0.7%)
patch tree reduce : 2.00 us (0.2%)
gen split merge : 1.15 us (0.1%)
split / merge op : 0/0
apply split merge : 1.13 us (0.1%)
LB compute : 790.08 us (97.4%)
LB move op cnt : 0
LB apply : 4.08 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.3%)
Info: cfl dt = 0.0036529458444923934 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.27363143866211 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4429083878326376, dt = 0.0036529458444923934
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 217.64 us (91.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (52.9%)
Info: cfl dt = 0.0036529462550834715 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.15323114142987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4465613336771301, dt = 0.0036529462550834715
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 197.78 us (91.0%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (50.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.2151e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.5817393276194 (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.36 us (2.5%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 195.36 us (91.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (55.4%)
Info: cfl dt = 0.0036529471069572505 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.40386514858471 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4538672266080486, dt = 0.0036529471069572505
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 892.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 206.68 us (91.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (60.8%)
Info: cfl dt = 0.0036529475486640505 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5506e+05 | 65536 | 2 | 1.846e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.24722495466285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4575201737150059, dt = 0.0036529475486640505
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 2.27 us (0.8%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 238.54 us (88.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (59.6%)
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 | 3.8633e+05 | 65536 | 2 | 1.696e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.52243799006393 (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 (2.3%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 210.28 us (91.6%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (51.5%)
Info: cfl dt = 0.0036529484647038423 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3187e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.65920683767358 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4648260692648425, dt = 0.0036529484647038423
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.35 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 195.59 us (90.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (54.4%)
Info: cfl dt = 0.0036529489394820074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1529e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.33383219091684 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4684790177295464, dt = 0.0036529489394820074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 201.69 us (91.0%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (56.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.1687e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.64953825414524 (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.55 us (2.5%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 205.36 us (91.5%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (50.0%)
Info: cfl dt = 0.0036529499236948497 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.97568108763598 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4757849160947636, dt = 0.0036529499236948497
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 198.64 us (91.3%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (55.6%)
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.3287e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.86139416497316 (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 : 5.66 us (2.4%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 218.79 us (91.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (53.8%)
Info: cfl dt = 0.0036529509556791798 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0816e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.90288083439624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4830908164520549, dt = 0.0036529509556791798
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 233.10 us (92.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.1%)
Info: cfl dt = 0.0036529514901857242 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.2941466550742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.486743767407734, dt = 0.0036529514901857242
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 241.35 us (92.3%)
LB move op cnt : 0
LB apply : 3.66 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (58.5%)
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 | 4.2288e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.85612637304303 (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.52 us (2.4%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 208.06 us (91.4%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (52.3%)
Info: cfl dt = 0.003652952597461017 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2719e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.72062579685358 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4940496709352826, dt = 0.003652952597461017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 204.75 us (91.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (58.0%)
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.3056e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.397113723307 (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 : 5.37 us (2.5%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 193.02 us (90.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (51.3%)
Info: cfl dt = 0.0036529537574424625 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1954e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.18521963045364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5013555767034785, dt = 0.0036529537574424625
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 208.29 us (91.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (58.3%)
Info: cfl dt = 0.003652954357846512 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.08631459621364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.505008530460921, dt = 0.003652954357846512
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.37 us (1.1%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 199.10 us (90.1%)
LB move op cnt : 0
LB apply : 3.68 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (53.7%)
Info: cfl dt = 0.0036529549722133445 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1858e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.99274470772252 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5086614848187676, dt = 0.0036529549722133445
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 209.66 us (90.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (48.4%)
Info: cfl dt = 0.0036529556008134726 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3515e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.31871637997774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.512314439790981, dt = 0.0036529556008134726
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 219.52 us (91.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (56.8%)
Info: cfl dt = 0.0036529562439215333 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.08822253546082 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5159673953917945, dt = 0.0036529562439215333
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 223.29 us (91.9%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (57.6%)
Info: cfl dt = 0.003652956901816332 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.26111001417382 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.519620351635716, dt = 0.003652956901816332
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 208.98 us (91.4%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (53.6%)
Info: cfl dt = 0.0036529575747808836 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.12029221574299 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5232733085375325, dt = 0.0036529575747808836
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 206.69 us (91.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.5%)
Info: cfl dt = 0.0036529582631024595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8462e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.31217781070228 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5269262661123133, dt = 0.0036529582631024595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 217.70 us (91.7%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.3%)
Info: cfl dt = 0.0036529589670726346 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8958e+05 | 65536 | 2 | 1.682e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.17334217777218 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5305792243754157, dt = 0.0036529589670726346
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 197.20 us (90.9%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.6%)
Info: cfl dt = 0.0036529596869873267 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0070e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.40468858892842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5342321833424883, dt = 0.0036529596869873267
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 233.34 us (92.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (56.5%)
Info: cfl dt = 0.0036529604231468433 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9737e+05 | 65536 | 2 | 1.649e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.73714073683875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5378851430294758, dt = 0.0036529604231468433
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 203.30 us (91.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (52.1%)
Info: cfl dt = 0.0036529611758559285 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.90677757765974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5415381034526225, dt = 0.0036529611758559285
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 197.63 us (91.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (62.5%)
Info: cfl dt = 0.0036529619454238084 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0054e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.37417398722818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5451910646284785, dt = 0.0036529619454238084
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.22 us (0.9%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 229.84 us (91.8%)
LB move op cnt : 0
LB apply : 3.55 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.1%)
Info: cfl dt = 0.003652962732164234 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9860e+05 | 65536 | 2 | 1.644e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.98515430879901 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5488440265739023, dt = 0.003652962732164234
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 200.79 us (91.0%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (60.0%)
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 | 3.9723e+05 | 65536 | 2 | 1.650e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.70903683780428 (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.75 us (2.5%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 209.43 us (90.9%)
LB move op cnt : 0
LB apply : 3.61 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (61.1%)
Info: cfl dt = 0.003652964358440632 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9693e+05 | 65536 | 2 | 1.651e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.65001860217231 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.556149952842462, dt = 0.003652964358440632
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 197.90 us (91.0%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.3%)
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 | 3.9631e+05 | 65536 | 2 | 1.654e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.52587829418988 (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.43 us (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 216.66 us (91.5%)
LB move op cnt : 0
LB apply : 3.67 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (55.2%)
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 | 3.9782e+05 | 65536 | 2 | 1.647e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.82882757863838 (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.61 us (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 222.59 us (91.7%)
LB move op cnt : 0
LB apply : 3.59 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.7%)
Info: cfl dt = 0.0036529669347584635 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9167e+05 | 65536 | 2 | 1.673e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.5929104316471 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5671088484568174, dt = 0.0036529669347584635
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 199.14 us (90.7%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.0%)
Info: cfl dt = 0.003652967831382207 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9688e+05 | 65536 | 2 | 1.651e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.63878399515359 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5707618153915759, dt = 0.003652967831382207
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 215.70 us (91.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.2%)
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 | 3.9714e+05 | 65536 | 2 | 1.650e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.69083813484603 (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.63 us (2.5%)
patch tree reduce : 2.39 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 204.30 us (91.1%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (56.1%)
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 | 3.8592e+05 | 65536 | 2 | 1.698e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.44084274115386 (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.54 us (2.2%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 237.12 us (92.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (58.8%)
Info: cfl dt = 0.003652970639661366 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0512e+05 | 65536 | 2 | 1.618e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.29211837433361 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5817207216539428, dt = 0.003652970639661366
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 204.51 us (91.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (51.2%)
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.0593e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.45518870235745 (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.50 us (2.1%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 244.95 us (92.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (58.3%)
Info: cfl dt = 0.003652972614099114 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1065e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.40233031127154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5890266639100166, dt = 0.003652972614099114
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 206.07 us (91.6%)
LB move op cnt : 0
LB apply : 2.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (57.0%)
Info: cfl dt = 0.003652973633093353 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0405e+05 | 65536 | 2 | 1.622e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.07808377611613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5926796365241156, dt = 0.003652973633093353
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 215.08 us (91.8%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (49.5%)
Info: cfl dt = 0.003652974673771896 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.88672561762297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5963326101572088, dt = 0.003652974673771896
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 219.13 us (91.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.2%)
Info: cfl dt = 0.0036529757365167588 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.08885272666478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5999855848309807, dt = 0.0036529757365167588
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 204.60 us (91.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (55.4%)
Info: cfl dt = 0.0036529768217151873 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.71962637835645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6036385605674974, dt = 0.0036529768217151873
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 202.01 us (91.4%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (53.1%)
Info: cfl dt = 0.003652977929759711 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0658e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.58618981114287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6072915373892127, dt = 0.003652977929759711
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 243.55 us (92.4%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (59.7%)
Info: cfl dt = 0.0036529790610481893 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0682e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.63463884117344 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6109445153189723, dt = 0.0036529790610481893
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 210.93 us (91.5%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (52.8%)
Info: cfl dt = 0.003652980215983859 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0649e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.56846599024898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6145974943800205, dt = 0.003652980215983859
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 212.02 us (91.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (57.3%)
Info: cfl dt = 0.0036529813949753875 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.62933088277262 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6182504745960045, dt = 0.0036529813949753875
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 208.85 us (91.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (54.6%)
Info: cfl dt = 0.003652982598436918 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9638e+05 | 65536 | 2 | 1.653e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.53915959925865 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.62190345599098, dt = 0.003652982598436918
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.30 us (0.6%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 203.44 us (90.9%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (56.8%)
Info: cfl dt = 0.0036529838267881213 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0675e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.62013395088468 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6255564385894168, dt = 0.0036529838267881213
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 208.50 us (91.2%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (58.3%)
Info: cfl dt = 0.0036529850804542436 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0545e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.35996804359007 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6292094224162048, dt = 0.0036529850804542436
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 218.71 us (91.8%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (54.2%)
Info: cfl dt = 0.0036529863598661573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0809e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.88878784705396 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6328624074966591, dt = 0.0036529863598661573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 222.09 us (91.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (59.4%)
Info: cfl dt = 0.0036529876654604115 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0663e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.596806191233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6365153938565253, dt = 0.0036529876654604115
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.13 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 240.85 us (92.5%)
LB move op cnt : 0
LB apply : 3.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (53.6%)
Info: cfl dt = 0.0036529889976792806 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2142e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.56377332805214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6401683815219859, dt = 0.0036529889976792806
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 : 13.87 us (4.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 251.00 us (88.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.2%)
Info: cfl dt = 0.003652990356970813 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.65181007324163 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6438213705196651, dt = 0.003652990356970813
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 197.26 us (91.1%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (57.8%)
Info: cfl dt = 0.0036529917437888885 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.0796178772417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.647474360876636, dt = 0.0036529917437888885
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 220.04 us (91.8%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (54.2%)
Info: cfl dt = 0.00365299315859326 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2938e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.1611984458295 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6511273526204249, dt = 0.00365299315859326
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 193.68 us (90.8%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (61.4%)
Info: cfl dt = 0.0036529946018496046 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2518e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.3181857670002 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6547803457790182, dt = 0.0036529946018496046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.29 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 197.02 us (91.0%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (56.9%)
Info: cfl dt = 0.0036529960740295858 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.25191071111458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6584333403808678, dt = 0.0036529960740295858
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.29 us (0.5%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 215.83 us (91.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (51.8%)
Info: cfl dt = 0.003652997575610887 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2311e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.90363355897978 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6620863364548975, dt = 0.003652997575610887
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 231.18 us (92.2%)
LB move op cnt : 0
LB apply : 3.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (53.0%)
Info: cfl dt = 0.0036529991070772777 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1032e+05 | 65536 | 2 | 1.284e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.40310179253508 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6657393340305084, dt = 0.0036529991070772777
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 216.26 us (91.9%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (53.8%)
Info: cfl dt = 0.0036530006689186574 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6664e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.70511481954259 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6693923331375857, dt = 0.0036530006689186574
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.36 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 240.52 us (92.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (57.8%)
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.8852e+05 | 65536 | 2 | 1.342e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.02883793759734 (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.57 us (2.8%)
patch tree reduce : 2.58 us (1.3%)
gen split merge : 1.10 us (0.6%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 179.16 us (90.0%)
LB move op cnt : 0
LB apply : 3.10 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.0%)
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 | 5.7653e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.6893359335412 (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.58 us (2.7%)
patch tree reduce : 2.34 us (1.1%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 188.86 us (90.4%)
LB move op cnt : 0
LB apply : 3.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (53.3%)
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.4729e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.75480320283862 (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.52 us (2.7%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 186.28 us (90.6%)
LB move op cnt : 0
LB apply : 2.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (55.9%)
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.6191e+05 | 65536 | 2 | 1.419e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.69042146135038 (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.37 us (2.4%)
patch tree reduce : 2.37 us (1.1%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 199.73 us (90.7%)
LB move op cnt : 0
LB apply : 3.54 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (55.0%)
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 | 4.9385e+05 | 65536 | 2 | 1.327e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.09891309471134 (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.64 us (2.3%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 228.64 us (91.9%)
LB move op cnt : 0
LB apply : 3.61 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (59.0%)
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 | 5.6247e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.8678686765717 (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.40 us (2.6%)
patch tree reduce : 2.20 us (1.1%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 187.64 us (90.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (54.4%)
Info: cfl dt = 0.003653012494770751 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7809e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.00278295267347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6949633723829807, dt = 0.003653012494770751
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.34 us (1.0%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 219.84 us (91.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (54.6%)
Info: cfl dt = 0.0036530143180010994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8213e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.81446979777581 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6986163848777514, dt = 0.0036530143180010994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.0%)
patch tree reduce : 2.00 us (0.4%)
gen split merge : 1.01 us (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 541.37 us (96.5%)
LB move op cnt : 0
LB apply : 3.05 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (60.2%)
Info: cfl dt = 0.0036530161762999254 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8543e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.47578400051587 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7022693991957525, dt = 0.0036530161762999254
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 200.82 us (91.2%)
LB move op cnt : 0
LB apply : 2.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (55.3%)
Info: cfl dt = 0.0036530180702212794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6922e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.22259015816887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7059224153720525, dt = 0.0036530180702212794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 205.49 us (91.2%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (53.7%)
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 | 5.6897e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.17254513396676 (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 : 5.54 us (2.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 194.37 us (91.0%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (56.1%)
Info: cfl dt = 0.0036530219671813318 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8319e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.0269747726531 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7132284534425997, dt = 0.0036530219671813318
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 209.57 us (91.4%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (57.9%)
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 | 5.7077e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.53505127781474 (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.54 us (2.7%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 187.78 us (90.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (56.8%)
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 | 5.8923e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.23969039529067 (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 : 5.98 us (2.9%)
patch tree reduce : 2.40 us (1.2%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 187.16 us (90.1%)
LB move op cnt : 0
LB apply : 3.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.1%)
Info: cfl dt = 0.0036530280940297935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7715e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.81522733076807 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7241875253945915, dt = 0.0036530280940297935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.30 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 199.47 us (90.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (56.3%)
Info: cfl dt = 0.003653030213700356 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8478e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.34520044044227 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7278405534886214, dt = 0.003653030213700356
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.50 us (1.2%)
gen split merge : 1.31 us (0.6%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 190.04 us (89.9%)
LB move op cnt : 0
LB apply : 3.57 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (52.9%)
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 | 5.8607e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.60537246925502 (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.52 us (2.6%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 188.98 us (90.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (54.9%)
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 | 5.6899e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.17752023904794 (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 : 5.79 us (2.4%)
patch tree reduce : 2.23 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 223.73 us (91.6%)
LB move op cnt : 0
LB apply : 3.55 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (60.9%)
Info: cfl dt = 0.003653036813304621 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7485e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.35279590706031 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7387996506481092, dt = 0.003653036813304621
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 240.26 us (92.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (58.9%)
Info: cfl dt = 0.003653039095424513 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7649e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.683072355991 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7424526874614137, dt = 0.003653039095424513
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 192.91 us (90.9%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (58.1%)
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 | 5.7716e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.81723627977443 (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.82 us (2.8%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 188.29 us (90.4%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (58.6%)
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 | 5.7907e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.20144199183197 (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.97 us (3.0%)
patch tree reduce : 2.22 us (1.1%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 176.25 us (89.7%)
LB move op cnt : 0
LB apply : 3.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (53.3%)
Info: cfl dt = 0.003653046197369457 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7221e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.8249326038521 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7534118117633688, dt = 0.003653046197369457
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 197.94 us (91.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (59.1%)
Info: cfl dt = 0.003653048652030585 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7598e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.58144334452724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7570648579607382, dt = 0.003653048652030585
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 213.01 us (91.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (59.6%)
Info: cfl dt = 0.003653051151458822 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4958e+05 | 65536 | 2 | 1.192e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.28296869759153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7607179066127687, dt = 0.003653051151458822
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.44 us (1.1%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 195.58 us (90.8%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (54.9%)
Info: cfl dt = 0.0036530536963218095 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9298e+05 | 65536 | 2 | 1.105e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.99201261647798 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7643709577642275, dt = 0.0036530536963218095
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.19 us (1.1%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 182.13 us (89.8%)
LB move op cnt : 0
LB apply : 3.50 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (53.6%)
Info: cfl dt = 0.003653056287294738 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9306e+05 | 65536 | 2 | 1.105e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.00890882049228 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7680240114605492, dt = 0.003653056287294738
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 203.86 us (91.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (64.6%)
Info: cfl dt = 0.00365305892506041 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9875e+05 | 65536 | 2 | 1.314e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.08250609787844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.771677067747844, dt = 0.00365305892506041
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 206.04 us (91.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (55.9%)
Info: cfl dt = 0.003653061610309285 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8467e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.32386927802311 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7753301266729045, dt = 0.003653061610309285
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 1.94 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 184.57 us (90.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (59.8%)
Info: cfl dt = 0.0036530643437395417 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9232e+05 | 65536 | 2 | 1.106e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.85916250255165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7789831882832137, dt = 0.0036530643437395417
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.12 us (0.6%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 179.14 us (89.9%)
LB move op cnt : 0
LB apply : 3.34 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (56.2%)
Info: cfl dt = 0.003653067126057127 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6101e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.57699180639344 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7826362526269532, dt = 0.003653067126057127
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 202.65 us (91.3%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.0%)
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 | 5.7544e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.47225353750562 (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.69 us (2.4%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 222.20 us (91.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (62.7%)
Info: cfl dt = 0.0036530728402172394 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.62205292250772 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.789942389710986, dt = 0.0036530728402172394
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 210.73 us (91.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (58.8%)
Info: cfl dt = 0.0036530757735109953 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9131e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.65786565999203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7935954625512034, dt = 0.0036530757735109953
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 207.32 us (91.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.2%)
Info: cfl dt = 0.0036530787585946412 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8538e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.46835615650724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7972485383247143, dt = 0.0036530787585946412
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.9%)
patch tree reduce : 1.95 us (1.0%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.6%)
LB compute : 174.86 us (90.0%)
LB move op cnt : 0
LB apply : 2.98 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (55.3%)
Info: cfl dt = 0.0036530817962137853 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9698e+05 | 65536 | 2 | 1.098e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.79568248700551 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.800901617083309, dt = 0.0036530817962137853
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 204.91 us (91.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.6%)
Info: cfl dt = 0.0036530848871221266 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9032e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.45954788509859 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8045546988795227, dt = 0.0036530848871221266
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 200.34 us (91.0%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (57.9%)
Info: cfl dt = 0.003653088032081517 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6018e+05 | 65536 | 2 | 1.170e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.41154622741901 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8082077837666448, dt = 0.003653088032081517
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 194.52 us (90.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (56.6%)
Info: cfl dt = 0.003653091231862009 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6650e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.6792675857412 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8118608717987263, dt = 0.003653091231862009
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 212.17 us (91.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (59.3%)
Info: cfl dt = 0.0036530944872419134 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9954e+05 | 65536 | 2 | 1.093e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.30916119566061 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8155139630305883, dt = 0.0036530944872419134
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 181.71 us (90.2%)
LB move op cnt : 0
LB apply : 3.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (53.1%)
Info: cfl dt = 0.0036530977990078526 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9564e+05 | 65536 | 2 | 1.100e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.52718847437978 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8191670575178303, dt = 0.0036530977990078526
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 217.46 us (91.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (56.2%)
Info: cfl dt = 0.0036531011679548173 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0134e+05 | 65536 | 2 | 1.090e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.67061509543466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8228201553168382, dt = 0.0036531011679548173
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 208.23 us (87.0%)
LB move op cnt : 0
LB apply : 14.74 us (6.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (62.6%)
Info: cfl dt = 0.0036531045948862174 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0039e+05 | 65536 | 2 | 1.092e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.48071566866125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.826473256484793, dt = 0.0036531045948862174
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.20 us (1.1%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 189.81 us (90.6%)
LB move op cnt : 0
LB apply : 2.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (53.2%)
Info: cfl dt = 0.0036531080806139417 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6523e+05 | 65536 | 2 | 1.409e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.35718980550605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8301263610796792, dt = 0.0036531080806139417
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 216.53 us (91.9%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.2%)
Info: cfl dt = 0.0036531116259584046 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7758e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.90283023230245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.833779469160293, dt = 0.0036531116259584046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.22 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 190.66 us (90.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.8%)
Info: cfl dt = 0.0036531152317486066 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5517e+05 | 65536 | 2 | 1.180e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.40755017524081 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8374325807862515, dt = 0.0036531152317486066
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.45 us (1.2%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 185.40 us (90.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.4%)
Info: cfl dt = 0.0036531188988221906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2112e+05 | 65536 | 2 | 1.258e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.57440407176689 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8410856960180002, dt = 0.0036531188988221906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 222.56 us (91.9%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (57.5%)
Info: cfl dt = 0.0036531226280254875 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8910e+05 | 65536 | 2 | 1.340e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.14797098846648 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8447388149168225, dt = 0.0036531226280254875
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 203.40 us (91.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (53.9%)
Info: cfl dt = 0.0036531264202135805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6535e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.45084397770658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8483919375448479, dt = 0.0036531264202135805
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 213.62 us (91.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (56.3%)
Info: cfl dt = 0.003653130276250354 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8963e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.32286261932973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8520450639650614, dt = 0.003653130276250354
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.86 us (0.9%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 187.10 us (90.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (52.5%)
Info: cfl dt = 0.0036531341970085503 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9380e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.16016692104475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8556981942413118, dt = 0.0036531341970085503
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 210.61 us (91.5%)
LB move op cnt : 0
LB apply : 3.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (56.4%)
Info: cfl dt = 0.0036531381833698213 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7436e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.25875150326377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8593513284383203, dt = 0.0036531381833698213
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.19 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 183.46 us (90.2%)
LB move op cnt : 0
LB apply : 3.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.6%)
Info: cfl dt = 0.0036531422362247883 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7688e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.7635273028618 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.86300446662169, dt = 0.0036531422362247883
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 200.75 us (91.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (60.0%)
Info: cfl dt = 0.003653146356473089 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8940e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.276865320762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8666576088579148, dt = 0.003653146356473089
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.22 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 190.64 us (90.8%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (51.4%)
Info: cfl dt = 0.0036531505450234395 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.90644447542813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8703107552143878, dt = 0.0036531505450234395
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.37 us (1.0%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 214.55 us (91.2%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.9%)
Info: cfl dt = 0.0036531548027936844 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4415e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.12955559370184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8739639057594113, dt = 0.0036531548027936844
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 200.06 us (91.1%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (58.4%)
Info: cfl dt = 0.003653159130710852 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.72812521876244 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.877617060562205, dt = 0.003653159130710852
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 230.18 us (92.4%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (61.7%)
Info: cfl dt = 0.0036531635297112103 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5947e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.27075197253902 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8812702196929159, dt = 0.0036531635297112103
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.22 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 215.08 us (91.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (55.9%)
Info: cfl dt = 0.003653168000740316 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7164e+05 | 65536 | 2 | 1.390e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.64669411740545 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.884923383222627, dt = 0.003653168000740316
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 216.89 us (91.9%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.7%)
Info: cfl dt = 0.003653172544753077 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6037e+05 | 65536 | 2 | 1.170e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.45268676107621 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8885765512233674, dt = 0.003653172544753077
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 239.78 us (92.4%)
LB move op cnt : 0
LB apply : 3.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (59.6%)
Info: cfl dt = 0.0036531771627138013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5466e+05 | 65536 | 2 | 1.182e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.3063067472692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8922297237681205, dt = 0.0036531771627138013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 220.83 us (91.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (55.3%)
Info: cfl dt = 0.003653181855596251 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.93153092282634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8958829009308342, dt = 0.003653181855596251
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 193.30 us (90.8%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (56.5%)
Info: cfl dt = 0.0036531866243837 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8207e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.80767654494663 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8995360827864305, dt = 0.0036531866243837
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 185.82 us (90.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.0%)
Info: cfl dt = 0.003653191470068983 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9283e+05 | 65536 | 2 | 1.105e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.96677949740251 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9031892694108141, dt = 0.003653191470068983
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 991.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 186.56 us (90.3%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (52.8%)
Info: cfl dt = 0.003653196393654557 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9269e+05 | 65536 | 2 | 1.106e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.93801602173512 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9068424608808832, dt = 0.003653196393654557
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.32 us (0.6%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 206.42 us (89.7%)
LB move op cnt : 0
LB apply : 4.91 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (56.7%)
Info: cfl dt = 0.003653201396152547 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9632e+05 | 65536 | 2 | 1.099e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.66749730193366 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9104956572745377, dt = 0.003653201396152547
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 3.09 us (1.5%)
gen split merge : 1.73 us (0.8%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 185.72 us (89.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (53.6%)
Info: cfl dt = 0.003653206478584807 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8064e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.52018699781398 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9141488586706903, dt = 0.003653206478584807
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.34 us (1.1%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 185.80 us (90.4%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (58.6%)
Info: cfl dt = 0.0036532116419829698 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5618e+05 | 65536 | 2 | 1.178e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.6119849338388 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.917802065149275, dt = 0.0036532116419829698
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 211.38 us (91.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.6%)
Info: cfl dt = 0.003653216887388502 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4223e+05 | 65536 | 2 | 1.209e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.81384262052624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.921455276791258, dt = 0.003653216887388502
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.81 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 189.41 us (90.9%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (49.8%)
Info: cfl dt = 0.0036532222158527573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6747e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.8776268711502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9251084936786464, dt = 0.0036532222158527573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 187.53 us (90.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (56.6%)
Info: cfl dt = 0.0036532276284370335 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6912e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.20907417191366 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9287617158944992, dt = 0.0036532276284370335
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.1%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 213.44 us (91.9%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (55.7%)
Info: cfl dt = 0.003653233126212621 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7849e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.08984104591183 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9324149435229363, dt = 0.003653233126212621
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.35 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 191.02 us (90.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (62.6%)
Info: cfl dt = 0.0036532387102608606 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0094e+05 | 65536 | 2 | 1.091e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.59595820404141 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.936068176649149, dt = 0.0036532387102608606
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 202.24 us (91.0%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (54.0%)
Info: cfl dt = 0.0036532443816731943 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3870e+05 | 65536 | 2 | 1.217e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.10599318290788 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9397214153594098, dt = 0.0036532443816731943
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 213.13 us (91.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (54.9%)
Info: cfl dt = 0.0036532501415512206 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0150e+05 | 65536 | 2 | 1.090e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.70822368130442 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.943374659741083, dt = 0.0036532501415512206
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 238.42 us (92.1%)
LB move op cnt : 0
LB apply : 3.91 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (59.9%)
Info: cfl dt = 0.0036532559910067482 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9013e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.42604554187005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9470279098826342, dt = 0.0036532559910067482
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 228.77 us (91.8%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (55.6%)
Info: cfl dt = 0.0036532619311618465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6959e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.30451286607698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.950681165873641, dt = 0.0036532619311618465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 207.17 us (91.8%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (55.3%)
Info: cfl dt = 0.003653267963148903 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.0622e+05 | 65536 | 2 | 1.295e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.58744415348697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9543344278048027, dt = 0.003653267963148903
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.74 us (1.1%)
gen split merge : 1.80 us (0.8%)
split / merge op : 0/0
apply split merge : 1.80 us (0.8%)
LB compute : 204.08 us (85.5%)
LB move op cnt : 0
LB apply : 15.15 us (6.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (57.8%)
Info: cfl dt = 0.003653274088110673 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8581e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.55990808724515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9579876957679516, dt = 0.003653274088110673
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 224.92 us (91.9%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (56.4%)
Info: cfl dt = 0.0036532803072003334 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5043e+05 | 65536 | 2 | 1.191e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.45997058080782 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9616409698560624, dt = 0.0036532803072003334
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 212.14 us (91.5%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (54.6%)
Info: cfl dt = 0.003653286621581536 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9649e+05 | 65536 | 2 | 1.099e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.70351675252095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9652942501632626, dt = 0.003653286621581536
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.42 us (1.1%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 210.61 us (91.3%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (54.2%)
Info: cfl dt = 0.0036532930324284607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9605e+05 | 65536 | 2 | 1.321e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.54771845696528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9689475367848441, dt = 0.0036532930324284607
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 205.03 us (91.3%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (59.0%)
Info: cfl dt = 0.0036532995409258692 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8991e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.38438845491814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9726008298172726, dt = 0.0036532995409258692
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 210.81 us (91.5%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (53.5%)
Info: cfl dt = 0.0036533061482691537 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9023e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.44918988302285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9762541293581986, dt = 0.0036533061482691537
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 214.96 us (91.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (51.3%)
Info: cfl dt = 0.0036533128556643954 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9080e+05 | 65536 | 2 | 1.109e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.56337276801868 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9799074355064676, dt = 0.0036533128556643954
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.29 us (1.1%)
gen split merge : 1.13 us (0.6%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 184.33 us (90.0%)
LB move op cnt : 0
LB apply : 3.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (48.1%)
Info: cfl dt = 0.003653319664328408 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7383e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.15818447334145 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.983560748362132, dt = 0.003653319664328408
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 229.23 us (92.1%)
LB move op cnt : 0
LB apply : 3.51 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (57.8%)
Info: cfl dt = 0.0036533265754888035 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5289e+05 | 65536 | 2 | 1.185e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.95589631374204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9872140680264605, dt = 0.0036533265754888035
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 226.93 us (91.9%)
LB move op cnt : 0
LB apply : 3.53 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (62.1%)
Info: cfl dt = 0.00365333359038403 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5411e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.19968269950321 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9908673946019493, dt = 0.00365333359038403
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 192.85 us (90.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (55.3%)
Info: cfl dt = 0.0036533407102634324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6616e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.61944125762568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9945207281923334, dt = 0.0036533407102634324
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.53 us (1.1%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 219.24 us (91.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.1%)
Info: cfl dt = 0.0036533479363873027 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2290e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.86932262078207 (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.83 us (2.5%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 217.00 us (91.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.0%)
Info: cfl dt = 0.003653351559829879 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7405e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.57825822850092 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1088.70045392 (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.90 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.69 us (54.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 : 851.00 ns (0.4%)
patch tree reduce : 1.01 us (0.4%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.3%)
LB compute : 232.87 us (96.3%)
LB move op cnt : 0
LB apply : 2.55 us (1.1%)
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 : 1088.8534943230002 (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.37 us (3.1%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 248.16 us (91.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (57.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 | 5.6860e+05 | 65536 | 2 | 1.153e-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.08 us (2.3%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 206.51 us (91.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (60.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 | 5.4759e+05 | 65536 | 2 | 1.197e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.88108693095607 (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.54 us (2.5%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.4%)
LB compute : 203.07 us (91.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (56.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.3719e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.72773130723078 (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.52 us (2.2%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.36 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 234.50 us (92.2%)
LB move op cnt : 0
LB apply : 3.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (43.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.1544e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.36253601989812 (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.61 us (2.4%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 214.15 us (91.3%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (57.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.1063e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.39806957648256 (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.34 us (2.4%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 205.89 us (91.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 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.1793e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.86242245300573 (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.44 us (2.5%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 199.91 us (91.3%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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.1591e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.45696351963372 (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.49 us (2.5%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 203.84 us (91.4%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (53.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.1899e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.07466064332075 (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.97 us (2.8%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 192.54 us (90.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (53.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.0895e+05 | 65536 | 2 | 1.603e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.05953341570005 (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.65 us (2.6%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.41 us (0.6%)
LB compute : 198.48 us (90.7%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.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.2745e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.77353788337984 (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.83 us (2.5%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 213.04 us (91.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (57.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.1709e+05 | 65536 | 2 | 1.571e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.69466435675666 (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.71 us (2.0%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 261.19 us (92.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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.1571e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.41642600362509 (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.67 us (2.2%)
patch tree reduce : 2.21 us (0.9%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 231.33 us (91.7%)
LB move op cnt : 0
LB apply : 3.61 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 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.9888e+05 | 65536 | 2 | 1.643e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.03999950960318 (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.72 us (2.5%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 210.70 us (91.3%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (55.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.2690e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.66146353380755 (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 : 5.81 us (2.4%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 222.95 us (91.8%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (56.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.0846e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.36038378686643 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1091.194042064 (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.96 us (1.1%)
patch tree reduce : 1.94 us (0.3%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.09 us (0.1%)
LB compute : 721.76 us (96.9%)
LB move op cnt : 0
LB apply : 3.57 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 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 | 5.4147e+05 | 65536 | 2 | 1.210e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.65159665673784 (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 : 6.00 us (2.9%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 187.44 us (90.3%)
LB move op cnt : 0
LB apply : 3.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (48.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 | 5.4118e+05 | 65536 | 2 | 1.211e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.5937298372054 (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.63 us (2.7%)
patch tree reduce : 1.77 us (0.9%)
gen split merge : 981.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 185.69 us (90.6%)
LB move op cnt : 0
LB apply : 3.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.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 | 5.3720e+05 | 65536 | 2 | 1.220e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.79613012922435 (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.21 us (2.0%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 242.85 us (92.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (57.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 | 5.4908e+05 | 65536 | 2 | 1.194e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.1782454006449 (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.37 us (2.6%)
patch tree reduce : 1.81 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 185.81 us (90.9%)
LB move op cnt : 0
LB apply : 3.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.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 | 5.5167e+05 | 65536 | 2 | 1.188e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.69892426797453 (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.33 us (2.5%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 190.37 us (90.8%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (57.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 | 5.4447e+05 | 65536 | 2 | 1.204e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.25476919109208 (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.51 us (2.6%)
patch tree reduce : 1.81 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 190.43 us (91.0%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (52.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 | 5.4321e+05 | 65536 | 2 | 1.206e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.00143216207877 (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.23 us (2.5%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 188.27 us (90.8%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (56.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 | 5.5508e+05 | 65536 | 2 | 1.181e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.38247471099932 (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.50 us (2.6%)
patch tree reduce : 1.80 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 192.45 us (90.9%)
LB move op cnt : 0
LB apply : 3.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (54.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 | 5.6337e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.04704638841977 (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 : 5.32 us (2.2%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 223.51 us (92.3%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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.8822e+05 | 65536 | 2 | 1.342e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.96665854549484 (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.37 us (2.1%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 236.45 us (92.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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.1824e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.92566573187354 (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.62 us (2.5%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 209.39 us (91.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.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 | 5.6435e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.2430779222786 (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.61 us (2.5%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.34 us (0.6%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 205.47 us (91.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (59.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.7311e+05 | 65536 | 2 | 1.385e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.93470200495251 (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.29 us (2.2%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 216.50 us (91.5%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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 | 5.8281e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.41774344003046 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1093.001632579 (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.49 us (2.6%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 267.97 us (92.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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 | 5.8042e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.46707703911731 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10365293150838553, 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 (2.3%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 216.77 us (90.4%)
LB move op cnt : 0
LB apply : 6.26 us (2.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.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 | 5.5837e+05 | 65536 | 2 | 1.174e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.04429036176201 (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.19 us (2.5%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 188.04 us (90.9%)
LB move op cnt : 0
LB apply : 2.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (53.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.9454e+05 | 65536 | 2 | 1.661e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.16909249132635 (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.64 us (2.5%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 209.58 us (91.5%)
LB move op cnt : 0
LB apply : 2.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (56.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 | 5.3036e+05 | 65536 | 2 | 1.236e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.4229394483807 (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.39 us (2.6%)
patch tree reduce : 1.77 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 185.21 us (90.6%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.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 | 5.7736e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.85356273289143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11826465754192764, 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 (2.5%)
patch tree reduce : 1.79 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 189.80 us (90.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (56.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.6314e+05 | 65536 | 2 | 1.415e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.93406020908262 (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.30 us (2.6%)
patch tree reduce : 1.78 us (0.9%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 188.02 us (90.7%)
LB move op cnt : 0
LB apply : 3.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.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 | 5.7797e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.9760981661865 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1255705205586987, 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.87 us (2.8%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 192.97 us (90.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (55.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 | 5.5506e+05 | 65536 | 2 | 1.181e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.37975405054951 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12922345206708422, 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 (2.5%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 201.04 us (91.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (54.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 | 5.7966e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.31461524760387 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13287638357546974, 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 (2.5%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 211.86 us (91.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (54.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 | 5.7424e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.22834488693121 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13652931508385527, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 211.14 us (91.5%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (51.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.6563e+05 | 65536 | 2 | 1.407e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.43423107100483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1401822465922408, 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.60 us (2.2%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 238.02 us (92.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (54.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 | 5.7956e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.29485770545976 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14383517810062632, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 212.28 us (91.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.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.7935e+05 | 65536 | 2 | 1.367e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.18650196350018 (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.68 us (2.6%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 203.04 us (91.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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.8595e+05 | 65536 | 2 | 1.349e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.05283251486975 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1094.8224716470002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.15000000000000002, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.1%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 219.61 us (90.7%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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 | 5.5992e+05 | 65536 | 2 | 1.170e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.35400248294384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15365293150838555, 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.37 us (2.5%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 193.55 us (91.0%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (54.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 | 5.6254e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.88034896592487 (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.48 us (2.3%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 215.81 us (91.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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 | 5.6602e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.57783914608669 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1609587945251566, 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 (2.6%)
patch tree reduce : 2.02 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 191.57 us (90.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (55.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 | 5.6290e+05 | 65536 | 2 | 1.164e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.95220405902313 (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.84 us (2.7%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.32 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 198.94 us (90.6%)
LB move op cnt : 0
LB apply : 3.42 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (53.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.6781e+05 | 65536 | 2 | 1.401e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.87203269296037 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16826465754192765, 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 (2.4%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 209.01 us (91.8%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (56.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 | 5.6132e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.63434961032392 (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.56 us (2.5%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 206.05 us (91.4%)
LB move op cnt : 0
LB apply : 2.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (56.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 | 5.7232e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.84168835806416 (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.37 us (2.1%)
patch tree reduce : 13.10 us (5.1%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 224.38 us (88.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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 | 5.8269e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.92255042951149 (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.54 us (2.6%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 192.52 us (90.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (58.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 | 5.8159e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.7037316039655 (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.75 us (2.8%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 185.61 us (90.4%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.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 | 5.8877e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.14410156605062 (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.72 us (2.8%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 882.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 185.39 us (90.5%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (52.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 | 5.8163e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.71044215845302 (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.49 us (2.3%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 216.64 us (91.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (56.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 | 5.7978e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.34053508314327 (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.33 us (2.5%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 191.42 us (91.0%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (54.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 | 5.8921e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.23216271984381 (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.49 us (2.2%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 226.68 us (92.1%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (58.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 | 5.7493e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.3302217246906 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1096.50859555 (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.48 us (2.6%)
patch tree reduce : 2.41 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 257.29 us (88.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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 | 5.7583e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.54779051597916 (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 : 5.40 us (2.5%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 199.02 us (90.8%)
LB move op cnt : 0
LB apply : 3.44 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 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 | 5.8398e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.181385972085 (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.49 us (2.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 187.86 us (90.7%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (54.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 | 5.8820e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.02854943055968 (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.26 us (2.3%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 210.75 us (91.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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 | 5.1542e+05 | 65536 | 2 | 1.272e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.42515485839992 (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.29 us (2.5%)
patch tree reduce : 1.77 us (0.9%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 188.52 us (90.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (54.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 | 5.8370e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.1266258078016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21826465754192764, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 190.33 us (86.0%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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 | 5.8752e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.89360683500179 (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.14 us (2.0%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 238.01 us (92.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (59.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 | 5.7271e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.92149392238494 (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.40 us (2.6%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 190.57 us (90.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (53.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 | 5.8849e+05 | 65536 | 2 | 1.114e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.08783159688443 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22922345206708422, 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.55 us (2.4%)
patch tree reduce : 1.75 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 211.26 us (91.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.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 | 5.8027e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.43859442969087 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23287638357546975, 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.86 us (2.7%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 194.95 us (90.9%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (55.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 | 5.8095e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.57519220656553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23652931508385527, 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 (2.8%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 186.31 us (90.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (57.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 | 5.8081e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.54532118266624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2401822465922408, 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.60 us (2.4%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 215.58 us (91.6%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.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 | 5.8346e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.07773999960392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24383517810062633, 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.23 us (2.6%)
patch tree reduce : 1.81 us (0.9%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 185.76 us (90.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (58.1%)
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 | 5.8694e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.77552294329969 (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 : 6.14 us (2.8%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 198.69 us (90.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 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 | 5.7015e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.67065471198453 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1098.161404506 (s) [Godunov][rank=0]
amr::Godunov: t = 0.25, 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.89 us (2.8%)
patch tree reduce : 1.66 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 : 262.78 us (92.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (60.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 | 5.7813e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.00842679907636 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2536529315083855, 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 (2.2%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 224.47 us (91.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (57.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 | 5.0438e+05 | 65536 | 2 | 1.299e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.21044779565388 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.25730586301677105, 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 (2.4%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 208.65 us (91.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (48.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.6985e+05 | 65536 | 2 | 1.395e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.28170960825126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2609587945251566, 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.40 us (2.3%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 216.52 us (91.9%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.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 | 5.7785e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.9524823110947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2646117260335421, 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 (2.4%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 225.61 us (92.0%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (57.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 | 5.8176e+05 | 65536 | 2 | 1.127e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.73653769178426 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26826465754192763, 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.26 us (2.3%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 206.23 us (90.4%)
LB move op cnt : 0
LB apply : 5.94 us (2.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.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 | 5.1310e+05 | 65536 | 2 | 1.277e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.95933731573137 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27191758905031316, 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.63 us (2.5%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 206.68 us (91.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (40.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 | 5.9214e+05 | 65536 | 2 | 1.107e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.82023170748178 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2755705205586987, 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.73 us (2.5%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 206.30 us (91.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.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.9691e+05 | 65536 | 2 | 1.319e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.71013346005853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2792234520670842, 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.56 us (2.2%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 231.77 us (92.2%)
LB move op cnt : 0
LB apply : 3.51 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.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 | 5.9296e+05 | 65536 | 2 | 1.105e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.98492334628807 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28287638357546974, 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.02 us (2.7%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 204.30 us (91.0%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (49.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.2663e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.6079895348078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28652931508385526, 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 (2.6%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 209.20 us (91.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (52.8%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0368e+05 | 65536 | 2 | 1.623e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.00319292024628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2901822465922408, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 247.77 us (92.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (61.9%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0561e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.39090667379766 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2938351781006263, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 213.92 us (91.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (59.7%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0120e+05 | 65536 | 2 | 1.634e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.50451365641547 (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.57 us (2.1%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 246.13 us (92.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (60.0%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0370e+05 | 65536 | 2 | 1.623e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.70402593576572 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1100.11609689 (s) [Godunov][rank=0]
amr::Godunov: t = 0.30000000000000004, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.6%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 265.63 us (88.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.3%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5742e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.85188900353643 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30365293150838557, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 194.02 us (90.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (52.6%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8501e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.38837959818969 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3073058630167711, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 235.80 us (92.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (57.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 | 5.9151e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.69341889467094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3109587945251566, 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.69 us (2.5%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 208.24 us (91.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (53.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.5157e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.61199674940497 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31461172603354215, 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 (2.4%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 215.29 us (91.8%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (52.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 | 5.7761e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.90447037497925 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3182646575419277, 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.67 us (2.3%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 229.48 us (91.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (56.1%)
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.7200e+05 | 65536 | 2 | 1.388e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.7124006148651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3219175890503132, 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 (2.6%)
patch tree reduce : 1.86 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 185.61 us (90.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (51.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 | 5.9931e+05 | 65536 | 2 | 1.094e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.25817557432005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32557052055869873, 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.87 us (2.6%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 202.11 us (91.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (57.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.9320e+05 | 65536 | 2 | 1.667e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.90031621488663 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32922345206708425, 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.70 us (2.5%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 205.50 us (91.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (53.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.2101e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.48132094257522 (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.37 us (2.4%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 206.20 us (91.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (54.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.3441e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.16947516677594 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.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.69 us (2.5%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 208.14 us (91.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.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.2286e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.85184929363591 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34018224659224083, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 240.39 us (92.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (57.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.2970e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.22448483210837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34383517810062636, 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.47 us (2.5%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 199.84 us (91.1%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (52.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.3645e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.57936824399668 (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.60 us (2.3%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 219.95 us (91.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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.3190e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.595034410611035 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1102.1292807490001 (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.07 us (2.8%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 267.26 us (92.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (59.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 | 5.7325e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.02981001258428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35365293150838556, 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.51 us (2.6%)
patch tree reduce : 1.84 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 191.91 us (90.8%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.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.9643e+05 | 65536 | 2 | 1.320e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.61519270757721 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3573058630167711, 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 : 16.35 us (7.4%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 191.02 us (86.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (54.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 | 5.8556e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.4993802297011 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3609587945251566, 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.77 us (2.7%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 191.41 us (91.0%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.1%)
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 | 5.7916e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.21553104204403 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36461172603354214, 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.38 us (2.4%)
patch tree reduce : 2.53 us (1.1%)
gen split merge : 1.31 us (0.6%)
split / merge op : 0/0
apply split merge : 1.76 us (0.8%)
LB compute : 203.94 us (90.8%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (52.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 | 5.1894e+05 | 65536 | 2 | 1.263e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.13101907241214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36826465754192766, 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.82 us (2.6%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 207.84 us (91.6%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.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 | 5.9148e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.68713179487871 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3719175890503132, 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 (2.8%)
patch tree reduce : 2.18 us (1.1%)
gen split merge : 1.14 us (0.6%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 181.53 us (89.9%)
LB move op cnt : 0
LB apply : 3.55 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (48.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 | 5.9867e+05 | 65536 | 2 | 1.095e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.12935304248685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3755705205586987, 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.93 us (2.8%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 191.80 us (90.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (56.3%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9009e+05 | 65536 | 2 | 1.111e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.40930741716211 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37922345206708424, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 212.36 us (91.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (53.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 | 5.1657e+05 | 65536 | 2 | 1.269e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.65669287305973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38287638357546977, 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 (2.5%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 204.92 us (91.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (55.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.0861e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.99302367986009 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3865293150838553, 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 (2.3%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 218.18 us (91.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (50.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.2546e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.37374220515622 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3901822465922408, 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 (2.1%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.52 us (0.6%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 238.83 us (92.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.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.6642e+05 | 65536 | 2 | 1.405e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.59234374102998 (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.25 us (2.2%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 217.15 us (91.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (55.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 | 5.8323e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.03189133614495 (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.39 us (2.4%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 204.79 us (91.4%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (59.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 | 5.2194e+05 | 65536 | 2 | 1.256e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.01839619868906 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1103.953869701 (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.55 us (2.7%)
patch tree reduce : 2.25 us (0.8%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 256.12 us (91.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.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 | 5.7080e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.53794697783322 (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.72 us (2.3%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 230.40 us (92.0%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (54.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.6752e+05 | 65536 | 2 | 1.402e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.81378037892604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4073058630167711, 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 (0.7%)
patch tree reduce : 1.99 us (0.2%)
gen split merge : 1.11 us (0.1%)
split / merge op : 0/0
apply split merge : 1.10 us (0.1%)
LB compute : 802.05 us (97.6%)
LB move op cnt : 0
LB apply : 3.43 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 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 | 5.7362e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.1044306004891 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4109587945251566, 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 (2.0%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 249.94 us (92.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (57.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.5006e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.30963356796445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4146117260335421, 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 (2.2%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 233.86 us (92.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.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.7261e+05 | 65536 | 2 | 1.387e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.83367540543179 (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 : 17.38 us (6.5%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 235.53 us (88.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (48.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 | 5.7372e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.12307920903946 (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.06 us (2.0%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 230.85 us (92.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (55.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.4124e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.53897668592772 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4255705205586987, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 230.81 us (92.0%)
LB move op cnt : 0
LB apply : 3.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.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.7787e+05 | 65536 | 2 | 1.371e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.88962839219741 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42922345206708423, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.01 us (0.4%)
gen split merge : 1.11 us (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 495.52 us (95.9%)
LB move op cnt : 0
LB apply : 3.73 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (57.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 | 5.8009e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.40192168376265 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43287638357546976, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 236.82 us (92.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (56.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.7809e+05 | 65536 | 2 | 1.371e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.9348226707244 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4365293150838553, 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 (2.3%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 224.30 us (91.8%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (51.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.4261e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.81501237007949 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4401822465922408, 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 (2.0%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 259.50 us (92.9%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (55.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 | 5.7773e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.9284274274897 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44383517810062634, 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 (2.3%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 224.10 us (91.8%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (55.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 | 5.7582e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.54526053189309 (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.72 us (2.3%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 230.68 us (92.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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 | 4.6729e+05 | 65536 | 2 | 1.402e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.47787652176967 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1105.848178211 (s) [Godunov][rank=0]
amr::Godunov: t = 0.45, 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.84 us (2.4%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 298.86 us (93.1%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 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 | 5.6584e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.54186764080895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45365293150838554, 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.06 us (2.0%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 232.17 us (92.3%)
LB move op cnt : 0
LB apply : 3.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (60.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 | 5.5567e+05 | 65536 | 2 | 1.179e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.50178323010252 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45730586301677106, 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.79 us (2.2%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 239.21 us (92.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (59.1%)
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 | 5.4960e+05 | 65536 | 2 | 1.192e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.28277729479606 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4609587945251566, 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.13 us (2.1%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 228.81 us (92.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (52.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.8033e+05 | 65536 | 2 | 1.364e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.38321931168649 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4646117260335421, 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.75 us (2.1%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 258.75 us (92.8%)
LB move op cnt : 0
LB apply : 3.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.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.9064e+05 | 65536 | 2 | 1.336e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.45175321970598 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46826465754192764, 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.85 us (2.3%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 235.80 us (92.4%)
LB move op cnt : 0
LB apply : 3.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (58.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 | 5.7397e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.17418499860004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47191758905031317, 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 (2.1%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 229.19 us (92.2%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (54.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 | 5.7782e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.94615815910352 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4755705205586987, 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.68 us (2.3%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.6%)
LB compute : 222.42 us (91.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (53.1%)
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.0707e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.6833591451487 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4792234520670842, 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 (2.4%)
patch tree reduce : 2.15 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 210.15 us (91.6%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (56.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.0367e+05 | 65536 | 2 | 1.623e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.0017504707923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48287638357546975, 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 (2.4%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 214.35 us (91.7%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 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.0256e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.77857186269115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4865293150838553, 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.48 us (2.3%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 223.17 us (91.9%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (59.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.9895e+05 | 65536 | 2 | 1.643e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.05457258067861 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4901822465922408, 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 (2.0%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 242.35 us (92.6%)
LB move op cnt : 0
LB apply : 2.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 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.9896e+05 | 65536 | 2 | 1.643e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.05508574849462 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4938351781006263, 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 (2.4%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 220.67 us (92.0%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (54.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.9062e+05 | 65536 | 2 | 1.678e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.38311131037214 (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.77 us (2.8%)
patch tree reduce : 1.80 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 189.30 us (90.5%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (52.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.9684e+05 | 65536 | 2 | 1.651e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.75729849298247 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1107.918970575 (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 : 7.78 us (2.7%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 263.91 us (92.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (59.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 | 5.1634e+05 | 65536 | 2 | 1.269e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.60942009811873 (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.57 us (2.7%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 189.18 us (90.7%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (55.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.3901e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.09253615708413 (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.25 us (2.2%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 221.31 us (92.0%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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.8609e+05 | 65536 | 2 | 1.348e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.53974636867325 (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.69 us (2.6%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 198.49 us (90.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.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 | 5.4178e+05 | 65536 | 2 | 1.210e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.71456505032117 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5146117260335421, 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 (2.5%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 202.44 us (91.3%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (57.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.8286e+05 | 65536 | 2 | 1.357e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.89061790446844 (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.14 us (2.3%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 206.12 us (91.7%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.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.5687e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.67585458386934 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5219175890503132, 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.23 us (2.1%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 227.65 us (92.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (60.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.4564e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.42236325722075 (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.58 us (2.3%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 220.19 us (91.9%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (58.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 | 5.5952e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.2733852199061 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5292234520670842, 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.98 us (2.6%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 207.53 us (91.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (48.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 | 5.3864e+05 | 65536 | 2 | 1.217e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.08407869254896 (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.46 us (2.1%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 236.56 us (92.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (59.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 | 5.7118e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.6144028698231 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5365293150838553, 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 (2.3%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 212.40 us (91.8%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (53.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 | 5.7726e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.83287999092889 (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.56 us (2.0%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 251.23 us (92.5%)
LB move op cnt : 0
LB apply : 3.75 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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 | 5.9054e+05 | 65536 | 2 | 1.110e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.49886859688046 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5438351781006263, 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 (2.2%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 214.72 us (91.8%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (56.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 | 5.9162e+05 | 65536 | 2 | 1.108e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.71491618752766 (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 : 5.84 us (2.9%)
patch tree reduce : 1.82 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 178.81 us (90.1%)
LB move op cnt : 0
LB apply : 3.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (54.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 | 5.8447e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.6471053902743 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1109.753034733 (s) [Godunov][rank=0]
amr::Godunov: t = 0.55, 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.63 us (2.9%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 244.92 us (91.7%)
LB move op cnt : 0
LB apply : 3.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (60.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.5805e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.91370432542726 (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.56 us (2.6%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 193.05 us (90.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (51.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.8465e+05 | 65536 | 2 | 1.352e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.2507801657129 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5573058630167711, 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 (2.5%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 206.20 us (91.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (53.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 | 5.5348e+05 | 65536 | 2 | 1.184e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.06159471191293 (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.76 us (2.8%)
patch tree reduce : 1.83 us (0.9%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 187.26 us (90.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (55.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 | 5.5880e+05 | 65536 | 2 | 1.173e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.12931888771641 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5646117260335421, 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.98 us (2.7%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 204.94 us (91.3%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.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 | 5.7276e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.93155476113392 (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 (2.4%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 224.95 us (91.7%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.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.2273e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.82622560021746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5719175890503132, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 206.47 us (91.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.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 | 5.1271e+05 | 65536 | 2 | 1.278e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.88184751145319 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5755705205586987, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.29 us (0.6%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 211.20 us (91.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (57.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 | 5.3347e+05 | 65536 | 2 | 1.228e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.04630818223974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5792234520670843, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 206.33 us (91.4%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.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 | 5.8782e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.95341260684067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5828763835754698, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 233.06 us (92.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (52.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 | 5.0861e+05 | 65536 | 2 | 1.289e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.05816050715256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5865293150838553, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 187.56 us (90.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (51.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.5977e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.25823263920397 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5901822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 232.31 us (92.0%)
LB move op cnt : 0
LB apply : 3.65 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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 | 5.8863e+05 | 65536 | 2 | 1.113e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.1154527732805 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5938351781006264, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 208.15 us (91.7%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (53.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.9635e+05 | 65536 | 2 | 1.320e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.5980575620427 (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 : 5.54 us (2.5%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 204.53 us (91.4%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (55.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 | 5.7861e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.83763773575701 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1111.598745965 (s) [Godunov][rank=0]
amr::Godunov: t = 0.6000000000000001, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.5%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 218.77 us (90.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (56.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 | 5.9200e+05 | 65536 | 2 | 1.107e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.79070362832076 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6036529315083856, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.68 us (0.8%)
gen split merge : 992.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 201.04 us (91.2%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (52.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 | 5.9355e+05 | 65536 | 2 | 1.104e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.10294881951316 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6073058630167711, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 203.77 us (91.3%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (58.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 | 5.8073e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.53078741606161 (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.63 us (2.7%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 186.57 us (90.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (55.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 | 5.8091e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.56536023955108 (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.40 us (2.4%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 204.03 us (91.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (55.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 | 5.8788e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.96571183545667 (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.77 us (2.5%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 211.04 us (91.5%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (52.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.8733e+05 | 65536 | 2 | 1.345e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.7874380195978 (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.53 us (2.5%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 203.72 us (91.3%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.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.9582e+05 | 65536 | 2 | 1.322e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.49157353326777 (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.73 us (2.7%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 189.45 us (90.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.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.9963e+05 | 65536 | 2 | 1.312e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.25656924632159 (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.78 us (2.8%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 187.86 us (90.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (54.4%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7637e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.65433510480683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6328763835754698, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 202.83 us (91.2%)
LB move op cnt : 0
LB apply : 3.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (53.8%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8466e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.3194808872297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6365293150838554, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 219.19 us (91.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (55.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 | 5.8941e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.27167007074999 (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.9%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 243.48 us (92.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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 | 5.9632e+05 | 65536 | 2 | 1.099e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.6587758333031 (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.48 us (2.1%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 235.37 us (91.8%)
LB move op cnt : 0
LB apply : 4.58 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (59.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 | 5.8566e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.51957965996583 (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.33 us (2.0%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 242.11 us (92.6%)
LB move op cnt : 0
LB apply : 3.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (58.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.6912e+05 | 65536 | 2 | 1.397e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.7305129622877 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1113.316079337 (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.59 us (2.9%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 235.97 us (91.6%)
LB move op cnt : 0
LB apply : 3.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (53.1%)
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 | 5.7400e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.17994401113374 (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.77 us (2.6%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 205.79 us (91.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (51.3%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8616e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.61969008299444 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6573058630167711, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 203.87 us (91.3%)
LB move op cnt : 0
LB apply : 3.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (54.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 | 5.8230e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.8443721934244 (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.44 us (2.3%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 218.44 us (91.9%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (60.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 | 5.6514e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.4019143454379 (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.59 us (2.4%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 213.20 us (91.6%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (54.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 | 5.6755e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.88608092050922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6682646575419277, 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.54 us (2.2%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 231.98 us (91.9%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (61.1%)
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 | 5.8352e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.08985936566386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6719175890503132, 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.75 us (2.6%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 203.10 us (91.1%)
LB move op cnt : 0
LB apply : 3.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (57.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 | 5.5382e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.12992575817533 (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.80 us (2.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 202.28 us (91.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (56.1%)
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 | 5.7453e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.28599999424831 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6792234520670842, 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 (2.5%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 196.00 us (91.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (51.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 | 5.7561e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.50327004706688 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6828763835754698, 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 (2.6%)
patch tree reduce : 2.22 us (1.1%)
gen split merge : 872.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 187.43 us (90.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (55.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 | 5.8559e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.5056975148726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6865293150838553, 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.60 us (2.7%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 191.24 us (90.7%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (53.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.4099e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.49060988060523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6901822465922408, 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.44 us (2.1%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 236.58 us (92.2%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (52.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 | 5.0231e+05 | 65536 | 2 | 1.305e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.79395954412566 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6938351781006263, 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 : 16.82 us (7.6%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 189.41 us (85.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (56.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 | 5.7542e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.46480759866513 (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.69 us (2.8%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 184.37 us (90.5%)
LB move op cnt : 0
LB apply : 2.93 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (56.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 | 5.7973e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.99182609388217 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1115.0368756290002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.7000000000000001, 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.68 us (3.1%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 222.83 us (91.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (57.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 | 5.7409e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.19851214801645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7036529315083856, 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.62 us (2.5%)
patch tree reduce : 12.65 us (5.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 191.65 us (86.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.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.9787e+05 | 65536 | 2 | 1.316e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.90263230829197 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7073058630167711, 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.60 us (2.3%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 221.62 us (91.9%)
LB move op cnt : 0
LB apply : 3.48 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (59.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 | 5.0666e+05 | 65536 | 2 | 1.293e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.66686227517687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7109587945251566, 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.66 us (2.5%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 202.49 us (91.2%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (58.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 | 5.7304e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.98620752744905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7146117260335422, 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.58 us (2.4%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 209.41 us (91.3%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (51.4%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6931e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.23888639397337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7182646575419277, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 188.81 us (90.6%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (55.0%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7685e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.75109697660567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7219175890503132, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.82 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 189.35 us (90.8%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (53.9%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7747e+05 | 65536 | 2 | 1.135e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.87560367382554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7255705205586988, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 192.04 us (90.8%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (53.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 | 5.8059e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.50111046743503 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7292234520670843, 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.72 us (2.7%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 188.38 us (90.3%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (52.4%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6132e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.6357108354078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7328763835754698, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.99 us (1.0%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 188.55 us (90.8%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (56.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.1994e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.26660391976691 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7365293150838553, 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.48 us (2.4%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 207.35 us (91.5%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (54.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 | 5.6377e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.12725978482871 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7401822465922409, 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.25 us (1.8%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 265.27 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.42 us (47.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 | 5.7099e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.57578532656397 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7438351781006264, 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.21 us (2.3%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 209.91 us (91.4%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (56.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 | 5.6851e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.07836635505333 (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.46 us (2.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 191.18 us (90.7%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (54.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 | 5.8097e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.16387617939424 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1116.776036387 (s) [Godunov][rank=0]
amr::Godunov: t = 0.75, 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 : 8.75 us (3.6%)
patch tree reduce : 2.30 us (0.9%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 219.40 us (90.3%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (59.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 | 5.0799e+05 | 65536 | 2 | 1.290e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.93375409703474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7536529315083855, 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.94 us (2.7%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 202.18 us (90.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.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 | 5.8211e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.8073376133049 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.757305863016771, 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.07 us (2.9%)
patch tree reduce : 2.44 us (1.2%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 189.42 us (90.2%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (56.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 | 5.7621e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.62383410195544 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7609587945251566, 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.94 us (2.8%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 188.81 us (90.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (56.1%)
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 | 5.7634e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.6501792290212 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7646117260335421, 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.51 us (2.3%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 222.11 us (91.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (58.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 | 5.7612e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.60586643159587 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7682646575419276, 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 (2.2%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 231.07 us (92.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (56.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 | 5.7589e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.55816135974959 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7719175890503132, 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.64 us (2.6%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 196.30 us (90.9%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (58.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 | 5.7805e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.99147501348806 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7755705205586987, 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 (2.7%)
patch tree reduce : 1.86 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 191.79 us (90.7%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.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 | 5.7478e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.33717773408286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7792234520670842, 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.87 us (3.3%)
patch tree reduce : 3.44 us (1.6%)
gen split merge : 1.51 us (0.7%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 186.74 us (88.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (53.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.4768e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.83256188527038 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7828763835754697, 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 (2.5%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 201.44 us (91.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (53.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.2755e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.79304592525011 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7865293150838553, 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.02 us (2.7%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 205.42 us (91.1%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (57.1%)
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.4305e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.90247215801885 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7901822465922408, 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.68 us (2.1%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 248.95 us (92.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (58.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 | 5.4920e+05 | 65536 | 2 | 1.193e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.20393288955039 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7938351781006263, 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.60 us (2.7%)
patch tree reduce : 1.86 us (0.9%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 186.27 us (90.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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 | 5.6521e+05 | 65536 | 2 | 1.160e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.41541202104918 (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.43 us (2.6%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 188.79 us (90.6%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.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 | 5.5840e+05 | 65536 | 2 | 1.174e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.04901960666264 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1118.5637271310002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.8, 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.59 us (2.6%)
patch tree reduce : 1.51 us (0.6%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 235.96 us (91.9%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 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 | 5.5190e+05 | 65536 | 2 | 1.187e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.74579251228185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8036529315083856, 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.07 us (2.9%)
patch tree reduce : 2.25 us (1.1%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 190.70 us (90.3%)
LB move op cnt : 0
LB apply : 3.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.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 | 5.6942e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.26097935930484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8073058630167711, 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 : 17.62 us (8.1%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 187.15 us (85.6%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (53.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 | 5.7470e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.31977635137964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8109587945251566, 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 (2.6%)
patch tree reduce : 1.80 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 189.32 us (90.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (52.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 | 5.7665e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.71223413197706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8146117260335421, 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.21 us (2.5%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 189.83 us (90.8%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (54.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 | 5.6621e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.61574360571726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8182646575419277, 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 (2.8%)
patch tree reduce : 2.02 us (1.0%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 186.29 us (90.4%)
LB move op cnt : 0
LB apply : 3.00 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.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 | 5.6837e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.05023581073277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8219175890503132, 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 (2.7%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 188.22 us (90.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (59.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 | 5.6720e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.81524352107519 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8255705205586987, 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.75 us (2.3%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 224.63 us (91.7%)
LB move op cnt : 0
LB apply : 3.62 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (56.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 | 5.7485e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.34927633162208 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8292234520670843, 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 (2.7%)
patch tree reduce : 1.65 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 185.85 us (90.8%)
LB move op cnt : 0
LB apply : 2.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (57.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 | 5.7065e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.50677459909436 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8328763835754698, 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.77 us (2.8%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 184.68 us (90.2%)
LB move op cnt : 0
LB apply : 3.18 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (59.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 | 5.7203e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.7839547040545 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8365293150838553, 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 (2.5%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 188.68 us (90.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (55.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 | 5.7295e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.96947072825533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8401822465922408, 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 (2.2%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 222.79 us (91.8%)
LB move op cnt : 0
LB apply : 3.52 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (56.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 | 5.7963e+05 | 65536 | 2 | 1.131e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.30906316097229 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8438351781006264, 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.54 us (2.7%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 186.21 us (90.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (52.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 | 5.7311e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.00126968465962 (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.96 us (2.9%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 188.43 us (90.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.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 | 5.7275e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.02964407410671 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1120.232214143 (s) [Godunov][rank=0]
amr::Godunov: t = 0.8500000000000001, 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.22 us (2.6%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 253.17 us (92.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (57.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.2813e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.90953041127474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8536529315083856, 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.41 us (2.6%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 189.42 us (90.8%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.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 | 5.6955e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.28718674842314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8573058630167711, 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.02 us (2.9%)
patch tree reduce : 2.24 us (1.1%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 188.51 us (90.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (53.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 | 5.6547e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.46803383814255 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8609587945251567, 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.78 us (2.7%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 194.99 us (90.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (54.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 | 5.5961e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.29173177054109 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8646117260335422, 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.91 us (2.6%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 207.69 us (91.3%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (57.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 | 5.3942e+05 | 65536 | 2 | 1.215e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.23995373177803 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8682646575419277, 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 (2.6%)
patch tree reduce : 1.78 us (0.9%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 188.18 us (90.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (51.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 | 5.5747e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.86355192940015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8719175890503132, 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.62 us (2.7%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 189.17 us (90.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 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 | 5.5825e+05 | 65536 | 2 | 1.174e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.02024264716793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8755705205586988, 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.41 us (2.7%)
patch tree reduce : 1.86 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 181.35 us (90.6%)
LB move op cnt : 0
LB apply : 3.16 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.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 | 5.6361e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.09576010304396 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8792234520670843, 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.30 us (2.5%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 190.84 us (90.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (58.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 | 5.7455e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.2905774976546 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8828763835754698, 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.56 us (2.5%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 198.39 us (90.9%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (60.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 | 5.8014e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.41195074793664 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8865293150838554, 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 (2.5%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 209.95 us (91.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (55.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.9181e+05 | 65536 | 2 | 1.333e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.6881706934517 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8901822465922409, 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 (2.1%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 233.85 us (92.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (55.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 | 4.9820e+05 | 65536 | 2 | 1.315e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.96945191494913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8938351781006264, 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.67 us (2.8%)
patch tree reduce : 1.79 us (0.9%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 186.01 us (90.6%)
LB move op cnt : 0
LB apply : 3.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (52.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 | 5.7794e+05 | 65536 | 2 | 1.134e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.97002608922918 (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.61 us (2.6%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 194.54 us (90.9%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (55.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 | 5.8307e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.45351426659434 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1121.986215721 (s) [Godunov][rank=0]
amr::Godunov: t = 0.9, 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.31 us (3.1%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 211.73 us (90.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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 | 5.6841e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.05880716705936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9036529315083855, 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.62 us (2.7%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 189.81 us (90.7%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.1%)
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.2521e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.32418569075593 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9073058630167711, 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.44 us (2.5%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 195.95 us (91.0%)
LB move op cnt : 0
LB apply : 3.39 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (54.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.2214e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.7074336114453 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9109587945251566, 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.66 us (2.6%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 200.13 us (91.0%)
LB move op cnt : 0
LB apply : 3.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.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.3180e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.64529613712592 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9146117260335421, 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.97 us (2.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 207.26 us (91.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.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.1530e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.33474498048052 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9182646575419277, 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 (2.4%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 207.49 us (91.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (54.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 | 3.4280e+05 | 65536 | 2 | 1.912e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.78653538626911 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9219175890503132, 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.73 us (2.4%)
patch tree reduce : 2.09 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 215.98 us (91.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (52.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.9604e+05 | 65536 | 2 | 1.655e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.47098068355638 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9255705205586987, 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.63 us (3.0%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 202.02 us (90.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (51.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 | 4.0768e+05 | 65536 | 2 | 1.608e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.8047271225969 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9292234520670842, 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.33 us (2.7%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.37 us (0.6%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 210.74 us (90.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (53.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 | 4.0659e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.5866633504867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9328763835754698, 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.71 us (2.7%)
patch tree reduce : 2.57 us (1.0%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 225.61 us (90.9%)
LB move op cnt : 0
LB apply : 3.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (58.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.0220e+05 | 65536 | 2 | 1.629e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.70605132678976 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9365293150838553, 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.50 us (2.6%)
patch tree reduce : 2.40 us (1.0%)
gen split merge : 1.41 us (0.6%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 226.95 us (91.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (56.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 | 4.1509e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.29344081236297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9401822465922408, 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.40 us (2.5%)
patch tree reduce : 2.38 us (0.9%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 232.46 us (91.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.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.0110e+05 | 65536 | 2 | 1.634e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.48522450893816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9438351781006263, 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.91 us (2.7%)
patch tree reduce : 2.45 us (1.1%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 196.45 us (90.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.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.0001e+05 | 65536 | 2 | 1.638e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.26612116680954 (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 : 6.21 us (2.6%)
patch tree reduce : 2.33 us (1.0%)
gen split merge : 1.32 us (0.6%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 216.48 us (90.7%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (59.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 | 4.1154e+05 | 65536 | 2 | 1.592e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.78523929008176 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1124.26784915 (s) [Godunov][rank=0]
amr::Godunov: t = 0.9500000000000001, 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 : 8.35 us (2.6%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 292.39 us (92.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (61.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 | 5.5214e+05 | 65536 | 2 | 1.187e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.79375897123478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9536529315083856, 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.84 us (2.8%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 187.58 us (90.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (53.1%)
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 | 5.7443e+05 | 65536 | 2 | 1.141e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.26557899445639 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9573058630167711, 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.55 us (2.5%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 205.39 us (91.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.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 | 5.6630e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.63427917104794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9609587945251566, 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 (2.5%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 209.25 us (91.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (55.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 | 5.7110e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.59796686131767 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9646117260335422, 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.59 us (2.6%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 196.50 us (91.0%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (56.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 | 5.6271e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.91353684105391 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9682646575419277, 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 (2.5%)
patch tree reduce : 2.40 us (1.2%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 186.13 us (90.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (53.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 | 5.6011e+05 | 65536 | 2 | 1.170e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.391816683311 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9719175890503132, 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.01 us (2.8%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 196.81 us (90.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (60.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 | 5.7366e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.11227846261662 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9755705205586988, 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.43 us (2.6%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 187.83 us (90.5%)
LB move op cnt : 0
LB apply : 3.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (56.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 | 5.6121e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.61392071607922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9792234520670843, 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.73 us (2.6%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 202.35 us (91.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (52.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 | 5.1668e+05 | 65536 | 2 | 1.268e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.67684370282365 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9828763835754698, 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 (2.3%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 211.19 us (91.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (57.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 | 5.6271e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.91371232089891 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9865293150838553, 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.47 us (2.7%)
patch tree reduce : 1.78 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 183.39 us (90.6%)
LB move op cnt : 0
LB apply : 3.34 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (52.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 | 5.5885e+05 | 65536 | 2 | 1.173e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.1402096992331 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9901822465922409, 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.43 us (2.2%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 222.47 us (92.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.34 us (93.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 | 5.6018e+05 | 65536 | 2 | 1.170e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.40647869135023 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9938351781006264, 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 (2.4%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 202.11 us (91.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (57.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 | 5.6212e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.7963093759158 (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.57 us (2.7%)
patch tree reduce : 1.78 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 187.50 us (90.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (60.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 | 5.9475e+05 | 65536 | 2 | 1.102e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.06505763319998 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1125.972600521 (s) [Godunov][rank=0]
amr::Godunov: t = 1, 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.32 us (2.8%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 243.28 us (91.9%)
LB move op cnt : 0
LB apply : 3.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (50.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 | 5.5907e+05 | 65536 | 2 | 1.172e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.1835539005592 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0036529315083855, 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.66 us (2.5%)
patch tree reduce : 2.18 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 210.05 us (91.3%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.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 | 5.2433e+05 | 65536 | 2 | 1.250e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.2124740915218 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.007305863016771, 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.78 us (2.3%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 233.57 us (92.2%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (57.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.6359e+05 | 65536 | 2 | 1.414e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.0245300044142 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0109587945251566, 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 (2.3%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 223.02 us (91.9%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (56.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 | 5.7213e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.80416730657835 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.014611726033542, 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.73 us (2.4%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 217.21 us (91.8%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (50.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 | 5.6237e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.84653276446925 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0182646575419276, 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 (2.8%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 188.84 us (90.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.1%)
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 | 5.6578e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.53065486325528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0219175890503132, 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 (2.4%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 202.77 us (91.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (52.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 | 5.7134e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.64568285794786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0255705205586987, 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.06 us (2.8%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 193.26 us (90.4%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (58.8%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7166e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.71041332014569 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0292234520670842, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 185.71 us (90.4%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (52.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 | 5.5356e+05 | 65536 | 2 | 1.184e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.07728241317808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0328763835754697, 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 (2.5%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 209.92 us (91.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (56.5%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.55117043965654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0365293150838553, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 210.17 us (91.6%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (59.8%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.74829183599155 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0401822465922408, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 243.43 us (92.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (59.5%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2678e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.63747497993454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0438351781006263, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 188.93 us (91.0%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (56.9%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5133e+05 | 65536 | 2 | 1.189e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.63132494993982 (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.30 us (2.6%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.7%)
LB compute : 184.32 us (90.4%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (51.5%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5466e+05 | 65536 | 2 | 1.182e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.53268555161995 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1127.808320003 (s) [Godunov][rank=0]
amr::Godunov: t = 1.05, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 219.69 us (91.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (62.8%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7265e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.90890353250326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0536529315083856, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 213.88 us (91.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.6%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7677e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.73454216763635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.057305863016771, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 187.30 us (90.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (39.9%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6540e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.45318169886451 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0609587945251566, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 198.76 us (91.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.1%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5198e+05 | 65536 | 2 | 1.187e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.76077820994017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0646117260335421, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 201.46 us (91.3%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (54.4%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8015e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.41406744856897 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0682646575419277, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 230.20 us (92.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.1%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9221e+05 | 65536 | 2 | 1.107e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.8334704953149 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0719175890503132, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 205.80 us (91.1%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.6%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.55411214343027 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0755705205586987, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 208.43 us (91.3%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0639e+05 | 65536 | 2 | 1.613e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.54584567623742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0792234520670843, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 197.34 us (91.0%)
LB move op cnt : 0
LB apply : 3.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.5%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4277e+05 | 65536 | 2 | 1.207e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.91346323361618 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0828763835754698, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 203.17 us (91.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (57.4%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5516e+05 | 65536 | 2 | 1.180e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.39903266326917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0865293150838553, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 204.25 us (91.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.2%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6865e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.10594741840829 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0901822465922408, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 235.55 us (92.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (57.6%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9241e+05 | 65536 | 2 | 1.331e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.80839409371502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0938351781006264, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 188.47 us (90.8%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (53.2%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.60272755521592 (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.29 us (2.4%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 204.96 us (91.4%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (54.7%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8258e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.38604950990728 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1129.614391218 (s) [Godunov][rank=0]
amr::Godunov: t = 1.1, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (0.8%)
patch tree reduce : 1.98 us (0.2%)
gen split merge : 922.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.08 us (0.1%)
LB compute : 880.82 us (97.5%)
LB move op cnt : 0
LB apply : 3.86 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.6%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5224e+05 | 65536 | 2 | 1.187e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.81338523002579 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1036529315083856, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 191.21 us (90.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (55.0%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4820e+05 | 65536 | 2 | 1.195e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.00184184843286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1073058630167711, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 202.12 us (91.0%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (57.7%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4926e+05 | 65536 | 2 | 1.193e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.21533132978317 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1109587945251567, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 191.25 us (90.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (58.5%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4011e+05 | 65536 | 2 | 1.213e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.37860797342482 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1146117260335422, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 12.24 us (5.5%)
split / merge op : 0/0
apply split merge : 1.37 us (0.6%)
LB compute : 190.44 us (85.9%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (62.2%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.48975302431533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1182646575419277, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 200.07 us (91.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.9%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.45447163582106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1219175890503132, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 222.76 us (92.0%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (54.6%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.32337351236363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1255705205586988, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 208.30 us (91.4%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (57.4%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf 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.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.8290860218359 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1292234520670843, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.98 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 266.87 us (93.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (61.9%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.0909e+05 | 65536 | 2 | 1.287e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.15545169894152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1328763835754698, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 242.62 us (92.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (56.3%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1367e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.00747650765032 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1365293150838554, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 202.78 us (91.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.3%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1643e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.5605226949369 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1401822465922409, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 238.51 us (92.3%)
LB move op cnt : 0
LB apply : 3.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (56.7%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9974e+05 | 65536 | 2 | 1.639e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.21191150181686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1438351781006264, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 195.81 us (91.0%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.6%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2605e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.49170496991908 (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.17 us (2.3%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 208.25 us (91.8%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (53.0%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1562e+05 | 65536 | 2 | 1.577e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.348494121944775 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1131.6777137610002 (s) [Godunov][rank=0]
amr::Godunov: t = 1.1500000000000001, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.12 us (2.7%)
patch tree reduce : 2.14 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 : 274.23 us (92.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (62.8%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4529e+05 | 65536 | 2 | 1.202e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.41806276731336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1536529315083857, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 188.00 us (90.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.6%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4642e+05 | 65536 | 2 | 1.199e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.64501639630865 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1573058630167712, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 192.02 us (90.7%)
LB move op cnt : 0
LB apply : 3.50 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (52.7%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4040e+05 | 65536 | 2 | 1.213e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.43726680939358 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1609587945251567, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.47 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 197.47 us (90.7%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.3%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.44872250513478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1646117260335422, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 202.02 us (91.2%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (56.2%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7972e+05 | 65536 | 2 | 1.130e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.32841494660367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1682646575419278, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 227.82 us (92.0%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (59.1%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6508e+05 | 65536 | 2 | 1.409e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.32379273270384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1719175890503133, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 189.10 us (90.5%)
LB move op cnt : 0
LB apply : 2.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (49.5%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7548e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.47573544356058 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1755705205586988, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 188.79 us (90.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (53.8%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7489e+05 | 65536 | 2 | 1.140e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.3588657596067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1792234520670843, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 186.12 us (90.6%)
LB move op cnt : 0
LB apply : 2.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (53.9%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6855e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.08656583453379 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1828763835754699, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 201.53 us (91.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.7%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8570e+05 | 65536 | 2 | 1.119e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.52845461035123 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1865293150838554, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 15.11 us (6.8%)
patch tree reduce : 1.87 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 193.47 us (87.0%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (59.3%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7330e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.039868692703 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.190182246592241, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 227.41 us (91.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.9%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6869e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.11472321769138 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1938351781006264, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 214.90 us (91.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (55.5%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6826e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.0287759769525 (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.77 us (2.8%)
patch tree reduce : 1.97 us (1.0%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 186.72 us (90.3%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (52.7%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5719e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.88259090093302 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1133.425041107 (s) [Godunov][rank=0]
amr::Godunov: t = 1.2000000000000002, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (3.2%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 215.96 us (90.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (59.8%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6184e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.73983924325198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2036529315083857, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 208.65 us (91.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (53.6%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6751e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.87704638777993 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2073058630167712, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 193.90 us (91.0%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (58.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 | 5.5343e+05 | 65536 | 2 | 1.184e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.05190081555455 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2109587945251568, 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 (2.7%)
patch tree reduce : 1.82 us (0.9%)
gen split merge : 981.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 194.42 us (90.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (54.1%)
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 | 5.6247e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.86551561949581 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2146117260335423, 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.38 us (2.7%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 183.90 us (90.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (54.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 | 5.7592e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.5658416950452 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2182646575419278, 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 (2.6%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 190.66 us (90.8%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 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 | 5.6542e+05 | 65536 | 2 | 1.159e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.45713223109445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2219175890503133, 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 (2.8%)
patch tree reduce : 1.80 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 181.27 us (90.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (52.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 | 5.6204e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.77938570657265 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2255705205586989, 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 (2.6%)
patch tree reduce : 1.70 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 187.79 us (90.9%)
LB move op cnt : 0
LB apply : 3.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (53.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 | 5.6033e+05 | 65536 | 2 | 1.170e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.43688606219463 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2292234520670844, 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.23 us (2.6%)
patch tree reduce : 1.83 us (0.9%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 184.45 us (90.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (52.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 | 5.3891e+05 | 65536 | 2 | 1.216e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.1380847810152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.23287638357547, 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.87 us (2.8%)
patch tree reduce : 2.30 us (1.1%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 187.85 us (90.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (56.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 | 5.4995e+05 | 65536 | 2 | 1.192e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.353132029842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2365293150838554, 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 (2.6%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 198.66 us (91.0%)
LB move op cnt : 0
LB apply : 3.45 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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 | 5.5953e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.27580270629915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.240182246592241, 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 (2.3%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 227.04 us (92.0%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.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 | 5.5516e+05 | 65536 | 2 | 1.180e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.40012921522076 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2438351781006265, 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.87 us (2.7%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 196.35 us (90.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.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 | 5.5735e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.83919080707199 (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.70 us (2.4%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 214.45 us (91.7%)
LB move op cnt : 0
LB apply : 3.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (44.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.8805e+05 | 65536 | 2 | 1.343e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.34258646357725 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1135.144177286 (s) [Godunov][rank=0]
amr::Godunov: t = 1.25, 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.73 us (2.8%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 253.30 us (91.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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 | 5.5754e+05 | 65536 | 2 | 1.175e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.8767534363937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2536529315083855, 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.30 us (2.5%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 190.76 us (90.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.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 | 5.7823e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.02894910904689 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.257305863016771, 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.60 us (2.6%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 971.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 191.52 us (90.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (53.8%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6224e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.81958904708685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2609587945251566, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.14 us (0.6%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 185.91 us (90.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (59.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 | 5.5554e+05 | 65536 | 2 | 1.180e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.47479456409987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.264611726033542, 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.51 us (2.3%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 221.97 us (91.7%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 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 | 5.0362e+05 | 65536 | 2 | 1.301e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.05748814184786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2682646575419276, 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 (2.2%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 227.90 us (92.1%)
LB move op cnt : 0
LB apply : 3.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (53.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 | 5.1356e+05 | 65536 | 2 | 1.276e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.05159148325576 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2719175890503132, 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.82 us (2.4%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 222.16 us (91.7%)
LB move op cnt : 0
LB apply : 3.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (54.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 | 5.6180e+05 | 65536 | 2 | 1.167e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.73208635394384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2755705205586987, 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.59 us (2.3%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 226.34 us (92.1%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (56.7%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0062e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.39000624813686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2792234520670842, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 223.39 us (91.9%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (61.7%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8832e+05 | 65536 | 2 | 1.688e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.9215251049531 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2828763835754697, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 217.08 us (91.2%)
LB move op cnt : 0
LB apply : 3.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (62.7%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9849e+05 | 65536 | 2 | 1.645e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.96066070767283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2865293150838553, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 208.67 us (91.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.9%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.58012645343905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2901822465922408, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 249.54 us (92.7%)
LB move op cnt : 0
LB apply : 3.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: cfl dt = 0.003652931508385529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0394e+05 | 65536 | 2 | 1.622e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.0542500828007 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2938351781006263, dt = 0.003652931508385529
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 194.52 us (90.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (62.6%)
Info: cfl dt = 0.003652931508385529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9693e+05 | 65536 | 2 | 1.651e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.64812243987353 (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.73 us (2.6%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 202.21 us (91.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (58.1%)
Info: cfl dt = 0.003652931508385529 [amr::basegodunov][rank=0]
Info: Timestep perf 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% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.29689817493966 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1137.2031537340001 (s) [Godunov][rank=0]
amr::Godunov: t = 1.3, dt = 0.003652931508385529
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.2%)
patch tree reduce : 1.69 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 : 319.96 us (93.7%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (56.6%)
Info: cfl dt = 0.003652931508385529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5499e+05 | 65536 | 2 | 1.181e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.36491633809037 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3036529315083856, dt = 0.003652931508385529
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 207.68 us (91.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (52.4%)
Info: cfl dt = 0.003652931508385529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7136e+05 | 65536 | 2 | 1.390e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.58410766302505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.307305863016771, dt = 0.003652931508385529
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 209.10 us (91.6%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.4%)
Info: cfl dt = 0.003652931508385529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2331e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.94268299407697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3109587945251566, dt = 0.003652931508385529
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 240.53 us (92.3%)
LB move op cnt : 0
LB apply : 3.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (56.1%)
Info: cfl dt = 0.003652931508385529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1452e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.17893177703753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3146117260335421, dt = 0.003652931508385529
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 224.71 us (92.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (57.5%)
Info: cfl dt = 0.003652931508385529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0727e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.72366252558024 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3182646575419277, dt = 0.003652931508385529
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 12.14 us (5.0%)
LB compute : 207.12 us (85.2%)
LB move op cnt : 0
LB apply : 3.86 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.8%)
Info: cfl dt = 0.003652931508385529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0845e+05 | 65536 | 2 | 1.605e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.95989146566254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3219175890503132, dt = 0.003652931508385529
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 207.58 us (91.3%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.2%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6201e+05 | 65536 | 2 | 1.166e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.77386424314913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3255705205586987, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 206.86 us (91.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (42.9%)
Info: cfl dt = 0.003652931508385529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8164e+05 | 65536 | 2 | 1.361e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.64743304592017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3292234520670843, dt = 0.003652931508385529
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.0%)
patch tree reduce : 1.79 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 : 230.93 us (92.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (59.4%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6156e+05 | 65536 | 2 | 1.167e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.68259332408412 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3328763835754698, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.9%)
patch tree reduce : 3.16 us (1.3%)
gen split merge : 1.72 us (0.7%)
split / merge op : 0/0
apply split merge : 2.05 us (0.8%)
LB compute : 219.38 us (90.0%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (56.3%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0797e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.8646948720769 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3365293150838553, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 245.85 us (92.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.6%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.17804414542418 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3401822465922408, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.96 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 271.09 us (93.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.9%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1679e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.63380995065442 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3438351781006264, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 237.45 us (92.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (53.9%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7530e+05 | 65536 | 2 | 1.379e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.37369460075254 (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.17 us (2.2%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 219.34 us (92.2%)
LB move op cnt : 0
LB apply : 2.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (56.8%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9622e+05 | 65536 | 2 | 1.321e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.46933716929533 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1139.28644046 (s) [Godunov][rank=0]
amr::Godunov: t = 1.35, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.69 us (3.0%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 262.33 us (91.7%)
LB move op cnt : 0
LB apply : 3.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.7%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.02314935341099 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3536529315083856, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 221.98 us (91.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.7%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3499e+05 | 65536 | 2 | 1.225e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.35262562114683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3573058630167711, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 210.39 us (91.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (60.3%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2342e+05 | 65536 | 2 | 1.252e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.0293837900087 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3609587945251567, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 222.79 us (92.0%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (50.0%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7006e+05 | 65536 | 2 | 1.150e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.38940725762771 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3646117260335422, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 217.82 us (91.8%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (53.1%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8051e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.48688592403722 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3682646575419277, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 216.12 us (91.8%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (51.9%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7859e+05 | 65536 | 2 | 1.133e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.10137561527968 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3719175890503132, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 198.93 us (91.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (59.5%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7186e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.74995976012968 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3755705205586988, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 205.51 us (91.1%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.5%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4806e+05 | 65536 | 2 | 1.196e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.97498571755095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3792234520670843, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.30 us (3.7%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 203.14 us (90.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.3%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7286e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.95103261663321 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3828763835754698, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 210.70 us (91.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (59.4%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8064e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.51277834174694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3865293150838554, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 187.31 us (90.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (56.6%)
Info: cfl dt = 0.003652931508385529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7037e+05 | 65536 | 2 | 1.149e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.4514628830371 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3901822465922409, dt = 0.003652931508385529
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 228.06 us (92.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (59.5%)
Info: cfl dt = 0.003652931508385529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6837e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.049456390645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3938351781006264, dt = 0.003652931508385529
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 190.27 us (90.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (55.9%)
Info: cfl dt = 0.003652931508385529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3228e+05 | 65536 | 2 | 1.231e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.8083175323608 (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 : 5.70 us (2.8%)
patch tree reduce : 1.79 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 187.19 us (90.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (54.3%)
Info: cfl dt = 0.003652931508385529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6426e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.85801061965074 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1141.035405441 (s) [Godunov][rank=0]
amr::Godunov: t = 1.4000000000000001, dt = 0.003652931508385529
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.66 us (3.2%)
patch tree reduce : 2.17 us (0.9%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 218.00 us (90.9%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (57.8%)
Info: cfl dt = 0.003652931508385529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6115e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.6013767271235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4036529315083857, dt = 0.003652931508385529
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 185.09 us (90.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.5%)
Info: cfl dt = 0.003652931508385529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5299e+05 | 65536 | 2 | 1.185e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.96310359690203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4073058630167712, dt = 0.003652931508385529
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 199.99 us (91.0%)
LB move op cnt : 0
LB apply : 3.46 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (57.6%)
Info: cfl dt = 0.003652931508385529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6752e+05 | 65536 | 2 | 1.155e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.8786261688123 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4109587945251567, dt = 0.003652931508385529
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 187.83 us (90.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.9%)
Info: cfl dt = 0.003652931508385529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7432e+05 | 65536 | 2 | 1.382e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.17797108305086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4146117260335422, dt = 0.003652931508385529
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 189.47 us (90.7%)
LB move op cnt : 0
LB apply : 3.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (54.7%)
Info: cfl dt = 0.003652931508385529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7912e+05 | 65536 | 2 | 1.368e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.14024092379574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4182646575419278, dt = 0.003652931508385529
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.14 us (1.1%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 181.44 us (90.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (53.9%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9302e+05 | 65536 | 2 | 1.329e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.93001669317655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4219175890503133, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 190.05 us (90.6%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.1%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8764e+05 | 65536 | 2 | 1.115e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.91768279130655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4255705205586988, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.21 us (1.1%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 187.52 us (90.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (53.7%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8696e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.7812876534437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4292234520670843, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.67 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 199.49 us (91.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (55.0%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6318e+05 | 65536 | 2 | 1.164e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.0092785580553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4328763835754699, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.8%)
patch tree reduce : 2.12 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.6%)
LB compute : 179.64 us (90.1%)
LB move op cnt : 0
LB apply : 3.11 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (56.1%)
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 | 5.7317e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.01407245257947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4365293150838554, 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.30 us (2.0%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 239.93 us (92.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (54.5%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6332e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.03675116400959 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.440182246592241, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 225.06 us (91.9%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (57.7%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8626e+05 | 65536 | 2 | 1.348e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.57318131513414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4438351781006264, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 208.22 us (91.6%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (58.3%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6106e+05 | 65536 | 2 | 1.168e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.58346764821543 (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.90 us (2.8%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 189.47 us (90.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (58.2%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7371e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.16247752246778 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1142.803757009 (s) [Godunov][rank=0]
amr::Godunov: t = 1.4500000000000002, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.31 us (3.4%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 221.03 us (90.5%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (55.5%)
Info: cfl dt = 0.0036529315083855297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9335e+05 | 65536 | 2 | 1.666e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.93095557156833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4536529315083857, dt = 0.0036529315083855297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 188.16 us (90.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (55.8%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6055e+05 | 65536 | 2 | 1.169e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.48040030412997 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4573058630167712, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 215.43 us (91.1%)
LB move op cnt : 0
LB apply : 3.43 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (60.9%)
Info: cfl dt = 0.00365293150838553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5418e+05 | 65536 | 2 | 1.183e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.20333681706104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4609587945251568, dt = 0.00365293150838553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 196.43 us (90.7%)
LB move op cnt : 0
LB apply : 3.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (53.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 | 5.6441e+05 | 65536 | 2 | 1.161e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.25559168145996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4646117260335423, 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 (2.7%)
patch tree reduce : 1.86 us (0.9%)
gen split merge : 991.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 194.82 us (90.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.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 | 5.6287e+05 | 65536 | 2 | 1.164e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.9453657833206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4682646575419278, 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.31 us (2.5%)
patch tree reduce : 2.18 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 190.49 us (90.8%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (58.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 | 5.6259e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.88993928646477 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4719175890503133, 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 (2.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 193.98 us (90.8%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (54.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 | 5.6866e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.10887220481179 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4755705205586989, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 191.40 us (90.6%)
LB move op cnt : 0
LB apply : 3.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (55.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 | 5.6702e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.77810854396897 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4792234520670844, 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.07 us (2.4%)
patch tree reduce : 1.81 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 193.54 us (90.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (59.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 | 5.1356e+05 | 65536 | 2 | 1.276e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.05148004251429 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.48287638357547, 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 (2.6%)
patch tree reduce : 1.76 us (0.9%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 186.39 us (90.6%)
LB move op cnt : 0
LB apply : 3.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 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 | 5.6330e+05 | 65536 | 2 | 1.163e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.03325150632958 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4865293150838554, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 213.55 us (91.7%)
LB move op cnt : 0
LB apply : 2.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (54.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 | 5.8188e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.76140706000601 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.490182246592241, 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 (2.1%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 246.29 us (92.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (57.7%)
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 | 5.6026e+05 | 65536 | 2 | 1.170e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.42343094132886 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4938351781006265, 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.41 us (2.1%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 236.24 us (92.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.9%)
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 | 5.5987e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.34510476968552 (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 : 5.23 us (2.2%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 223.55 us (92.2%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (57.8%)
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 | 5.6044e+05 | 65536 | 2 | 1.169e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.33145022017686 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1144.5773079520002 (s) [Godunov][rank=0]
amr::Godunov: t = 1.5, 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.93 us (3.1%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 236.31 us (91.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.0%)
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 | 5.6423e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.21860357856566 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5036529315083855, 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.98 us (2.8%)
patch tree reduce : 1.82 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 191.38 us (90.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (55.4%)
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 | 5.5115e+05 | 65536 | 2 | 1.189e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.5939130140374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.507305863016771, 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.22 us (2.3%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 209.58 us (91.6%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.2%)
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 | 5.8655e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.69897808460226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5109587945251566, 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.38 us (2.7%)
patch tree reduce : 1.97 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 183.25 us (90.5%)
LB move op cnt : 0
LB apply : 3.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.6%)
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 | 5.7141e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.66011307668869 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.514611726033542, 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.31 us (2.6%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 185.49 us (90.5%)
LB move op cnt : 0
LB apply : 3.41 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (56.0%)
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 | 5.6585e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.54502043873673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5182646575419276, 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.48 us (2.6%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 194.64 us (90.7%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (52.2%)
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 | 5.5672e+05 | 65536 | 2 | 1.177e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.71191267608529 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5219175890503132, 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.69 us (2.8%)
patch tree reduce : 1.81 us (0.9%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 184.16 us (90.5%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (39.7%)
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 | 5.6880e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.13632042148238 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5255705205586987, 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.68 us (1.4%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 374.99 us (94.8%)
LB move op cnt : 0
LB apply : 3.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.3%)
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 | 5.7295e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.96963456422577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5292234520670842, 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.80 us (2.8%)
patch tree reduce : 1.82 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.34 us (0.7%)
LB compute : 186.26 us (90.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (52.4%)
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 | 5.7375e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.12974326673162 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5328763835754697, 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.58 us (2.3%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 222.14 us (91.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (61.2%)
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 | 5.6602e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.57822661935958 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5365293150838553, 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 : 5.30 us (2.6%)
patch tree reduce : 1.78 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 186.77 us (90.5%)
LB move op cnt : 0
LB apply : 3.59 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (54.4%)
Info: cfl dt = 0.003652931508385545 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5706e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.77970778943812 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5401822465922408, dt = 0.003652931508385545
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 233.70 us (92.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (61.0%)
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 | 5.6265e+05 | 65536 | 2 | 1.165e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.90140581651085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5438351781006263, 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 : 6.08 us (2.9%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 971.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 190.83 us (90.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (63.0%)
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 | 5.6893e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.16272634629816 (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.64 us (2.7%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 186.46 us (90.4%)
LB move op cnt : 0
LB apply : 3.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (55.3%)
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 | 5.5500e+05 | 65536 | 2 | 1.181e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.58071534276733 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1146.261947788 (s) [Godunov][rank=0]
amr::Godunov: t = 1.55, 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 : 8.14 us (3.1%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 240.95 us (91.3%)
LB move op cnt : 0
LB apply : 3.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (53.1%)
Info: cfl dt = 0.0036529315083855497 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5370e+05 | 65536 | 2 | 1.184e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.10599009780576 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5536529315083856, dt = 0.0036529315083855497
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 244.72 us (92.2%)
LB move op cnt : 0
LB apply : 3.60 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (60.1%)
Info: cfl dt = 0.003652931508385551 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5911e+05 | 65536 | 2 | 1.172e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.19224131066264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.557305863016771, dt = 0.003652931508385551
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 212.43 us (91.5%)
LB move op cnt : 0
LB apply : 3.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.6%)
Info: cfl dt = 0.003652931508385553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5666e+05 | 65536 | 2 | 1.177e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.7001295428122 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5609587945251566, dt = 0.003652931508385553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 216.62 us (91.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (55.3%)
Info: cfl dt = 0.003652931508385555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5949e+05 | 65536 | 2 | 1.171e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.26767549587306 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5646117260335421, dt = 0.003652931508385555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 186.02 us (90.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (48.7%)
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 | 5.5769e+05 | 65536 | 2 | 1.175e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.90754431371828 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5682646575419277, 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 : 6.07 us (2.7%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 207.14 us (91.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (56.5%)
Info: cfl dt = 0.003652931508385561 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2746e+05 | 65536 | 2 | 1.242e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.84162705898683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5719175890503132, dt = 0.003652931508385561
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 221.08 us (91.8%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (52.8%)
Info: cfl dt = 0.0036529315083855636 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.36050535343703 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5755705205586987, dt = 0.0036529315083855636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 215.55 us (91.6%)
LB move op cnt : 0
LB apply : 3.46 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (59.6%)
Info: cfl dt = 0.003652931508385567 [amr::basegodunov][rank=0]
Info: Timestep perf 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.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.71228345722233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5792234520670843, dt = 0.003652931508385567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 210.70 us (91.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (49.5%)
Info: cfl dt = 0.003652931508385569 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.84179996078232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5828763835754698, dt = 0.003652931508385569
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 202.38 us (91.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (58.5%)
Info: cfl dt = 0.0036529315083855727 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.84787842678998 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5865293150838553, dt = 0.0036529315083855727
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 201.16 us (91.1%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (52.8%)
Info: cfl dt = 0.0036529315083855757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1527e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.32868136078804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5901822465922408, dt = 0.0036529315083855757
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 240.68 us (92.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (53.5%)
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 | 4.2856e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.9952720689784 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5938351781006264, 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 : 6.01 us (2.6%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 207.27 us (91.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (54.6%)
Info: cfl dt = 0.003652931508385583 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.82560183380568 (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.28 us (2.2%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 219.11 us (91.9%)
LB move op cnt : 0
LB apply : 3.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (57.6%)
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.2944e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.25467228235556 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1148.283201009 (s) [Godunov][rank=0]
amr::Godunov: t = 1.6, 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 : 7.77 us (2.8%)
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.11 us (0.4%)
LB compute : 260.51 us (92.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (56.9%)
Info: cfl dt = 0.003652931508385591 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3471e+05 | 65536 | 2 | 1.226e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.29555690164156 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6036529315083856, dt = 0.003652931508385591
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 203.51 us (91.2%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (55.1%)
Info: cfl dt = 0.0036529315083855952 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8695e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.77874857982384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6073058630167711, dt = 0.0036529315083855952
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.8%)
patch tree reduce : 1.99 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 177.02 us (90.2%)
LB move op cnt : 0
LB apply : 3.12 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (56.8%)
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.9558e+05 | 65536 | 2 | 1.322e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.44317515567981 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6109587945251567, 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.16 us (2.2%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 218.39 us (91.8%)
LB move op cnt : 0
LB apply : 3.48 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (55.2%)
Info: cfl dt = 0.003652931508385606 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.0236e+05 | 65536 | 2 | 1.305e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.80357712837919 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6146117260335422, dt = 0.003652931508385606
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 215.01 us (91.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.0%)
Info: cfl dt = 0.0036529315083856117 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1369e+05 | 65536 | 2 | 1.276e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.07730278123294 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6182646575419277, dt = 0.0036529315083856117
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.86 us (0.9%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 189.32 us (90.6%)
LB move op cnt : 0
LB apply : 2.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (54.4%)
Info: cfl dt = 0.003652931508385617 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7109e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.59628017993212 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6219175890503132, dt = 0.003652931508385617
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 202.72 us (91.1%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (52.0%)
Info: cfl dt = 0.003652931508385624 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6586e+05 | 65536 | 2 | 1.158e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.54555082400312 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6255705205586988, dt = 0.003652931508385624
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 190.48 us (90.7%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (58.3%)
Info: cfl dt = 0.0036529315083856312 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3577e+05 | 65536 | 2 | 1.223e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.50815783096684 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6292234520670843, dt = 0.0036529315083856312
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 195.22 us (90.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (53.1%)
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 | 5.6857e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.08926494337534 (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.34 us (2.6%)
patch tree reduce : 1.99 us (1.0%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.6%)
LB compute : 182.55 us (90.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (55.9%)
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 | 5.7288e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.95510121548409 (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.58 us (2.5%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 206.53 us (91.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (56.9%)
Info: cfl dt = 0.0036529315083856555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5044e+05 | 65536 | 2 | 1.191e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.45222563323254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6401822465922413, dt = 0.0036529315083856555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 225.39 us (91.8%)
LB move op cnt : 0
LB apply : 3.69 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (58.5%)
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 | 5.6847e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.07031449500191 (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 : 5.42 us (2.4%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 204.95 us (91.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (61.7%)
Info: cfl dt = 0.003652931508385674 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6851e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.07823275833115 (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 : 5.01 us (2.4%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 992.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 190.50 us (91.0%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (54.7%)
Info: cfl dt = 0.003652931508385682 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7401e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.20333869843343 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1150.029356141 (s) [Godunov][rank=0]
amr::Godunov: t = 1.6500000000000001, dt = 0.003652931508385682
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 232.47 us (91.6%)
LB move op cnt : 0
LB apply : 3.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.9%)
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 | 5.5733e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.83481193444808 (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.94 us (2.6%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 210.46 us (91.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (54.3%)
Info: cfl dt = 0.0036529315083857045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6848e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.07214800654249 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6573058630167716, dt = 0.0036529315083857045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1.99 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 182.25 us (88.5%)
LB move op cnt : 0
LB apply : 5.43 us (2.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (51.9%)
Info: cfl dt = 0.0036529315083857167 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7182e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.74129022161723 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6609587945251574, dt = 0.0036529315083857167
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.65 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 189.06 us (90.7%)
LB move op cnt : 0
LB apply : 3.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (52.9%)
Info: cfl dt = 0.0036529315083857314 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6870e+05 | 65536 | 2 | 1.152e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.11682949155811 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6646117260335431, dt = 0.0036529315083857314
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 211.72 us (91.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (58.9%)
Info: cfl dt = 0.0036529315083857457 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6421e+05 | 65536 | 2 | 1.162e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.21595817915346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6682646575419289, dt = 0.0036529315083857457
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 203.89 us (91.4%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (55.3%)
Info: cfl dt = 0.003652931508385761 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6135e+05 | 65536 | 2 | 1.167e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.64150436898463 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6719175890503146, dt = 0.003652931508385761
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 187.29 us (90.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.6%)
Info: cfl dt = 0.0036529315083857774 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3689e+05 | 65536 | 2 | 1.221e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.73292434711712 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6755705205587004, dt = 0.0036529315083857774
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.30 us (0.6%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 197.59 us (90.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (56.1%)
Info: cfl dt = 0.003652931508385795 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.72073007059161 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6792234520670861, dt = 0.003652931508385795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 2.17 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 245.12 us (92.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.1%)
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.0271e+05 | 65536 | 2 | 1.627e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.80811690679388 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6828763835754719, 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.65 us (2.4%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 212.86 us (91.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.2%)
Info: cfl dt = 0.0036529315083858338 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8501e+05 | 65536 | 2 | 1.702e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.25648806132841 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6865293150838576, dt = 0.0036529315083858338
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 196.49 us (90.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.1%)
Info: cfl dt = 0.003652931508385855 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0361e+05 | 65536 | 2 | 1.624e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.98983563794737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6901822465922434, dt = 0.003652931508385855
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 244.61 us (92.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (59.3%)
Info: cfl dt = 0.003652931508385878 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.97050397444647 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6938351781006291, dt = 0.003652931508385878
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 220.57 us (91.8%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (56.9%)
Info: cfl dt = 0.0036529315083859027 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1772e+05 | 65536 | 2 | 1.266e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.88604127307325 (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.46 us (2.7%)
patch tree reduce : 2.02 us (1.0%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 185.41 us (90.4%)
LB move op cnt : 0
LB apply : 3.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (58.7%)
Info: cfl dt = 0.00365293150838592 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7314e+05 | 65536 | 2 | 1.143e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.08277648546515 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1151.945808957 (s) [Godunov][rank=0]
amr::Godunov: t = 1.7000000000000002, dt = 0.00365293150838592
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.99 us (2.8%)
patch tree reduce : 3.08 us (1.1%)
gen split merge : 1.49 us (0.5%)
split / merge op : 0/0
apply split merge : 1.86 us (0.7%)
LB compute : 258.75 us (90.9%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (53.9%)
Info: cfl dt = 0.0036529315083859474 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5737e+05 | 65536 | 2 | 1.176e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.84301927272057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7036529315083861, dt = 0.0036529315083859474
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 215.70 us (91.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.3%)
Info: cfl dt = 0.0036529315083859764 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2439e+05 | 65536 | 2 | 1.250e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.22477538768064 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7073058630167721, dt = 0.0036529315083859764
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 204.09 us (91.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (54.0%)
Info: cfl dt = 0.0036529315083860072 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5299e+05 | 65536 | 2 | 1.185e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.96435075718307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.710958794525158, dt = 0.0036529315083860072
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 186.59 us (90.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.2%)
Info: cfl dt = 0.003652931508386041 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6061e+05 | 65536 | 2 | 1.169e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.49385366884653 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.714611726033544, dt = 0.003652931508386041
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 1.14 us (0.6%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 184.05 us (90.1%)
LB move op cnt : 0
LB apply : 3.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (67.8%)
Info: cfl dt = 0.003652931508386076 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7183e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.74468619381757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.71826465754193, dt = 0.003652931508386076
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 201.22 us (90.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (54.7%)
Info: cfl dt = 0.0036529315083861135 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5773e+05 | 65536 | 2 | 1.175e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.9142555884659 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.721917589050316, dt = 0.0036529315083861135
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 195.13 us (90.9%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (59.5%)
Info: cfl dt = 0.0036529315083861534 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5830e+05 | 65536 | 2 | 1.174e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.02986679314922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7255705205587022, dt = 0.0036529315083861534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.42 us (1.2%)
gen split merge : 1.32 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 188.95 us (90.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (59.7%)
Info: cfl dt = 0.0036529315083861963 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7189e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.75612705338852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7292234520670884, dt = 0.0036529315083861963
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 236.28 us (92.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (58.0%)
Info: cfl dt = 0.003652931508386242 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3666e+05 | 65536 | 2 | 1.221e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.68727825135917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7328763835754746, dt = 0.003652931508386242
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.16 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 204.28 us (91.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (60.3%)
Info: cfl dt = 0.0036529315083862895 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1588e+05 | 65536 | 2 | 1.270e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.51709465791596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7365293150838608, dt = 0.0036529315083862895
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 237.23 us (92.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (58.7%)
Info: cfl dt = 0.003652931508386341 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7293e+05 | 65536 | 2 | 1.144e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.96452269994055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.740182246592247, dt = 0.003652931508386341
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 256.94 us (92.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.7%)
Info: cfl dt = 0.0036529315083863962 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7579e+05 | 65536 | 2 | 1.377e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.4718519493746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7438351781006334, dt = 0.0036529315083863962
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1.66 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 188.48 us (90.8%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (54.9%)
Info: cfl dt = 0.0036529315083864535 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7155e+05 | 65536 | 2 | 1.147e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.68782016017337 (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.83 us (2.4%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 218.57 us (91.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (56.4%)
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 | 5.4409e+05 | 65536 | 2 | 1.205e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.07487501797318 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1153.7102421 (s) [Godunov][rank=0]
amr::Godunov: t = 1.75, 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 : 8.16 us (3.1%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 242.78 us (91.3%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (60.3%)
Info: cfl dt = 0.003652931508386561 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6716e+05 | 65536 | 2 | 1.156e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.80712731485866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7536529315083864, dt = 0.003652931508386561
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.88 us (0.4%)
gen split merge : 1.06 us (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 438.04 us (95.8%)
LB move op cnt : 0
LB apply : 3.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.2%)
Info: cfl dt = 0.00365293150838663 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7535e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.4496521612518 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.757305863016773, dt = 0.00365293150838663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1.78 us (0.9%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 182.39 us (90.3%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (58.0%)
Info: cfl dt = 0.003652931508386703 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7656e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.69278857541647 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7609587945251597, dt = 0.003652931508386703
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 183.17 us (90.3%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (51.9%)
Info: cfl dt = 0.003652931508386781 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7103e+05 | 65536 | 2 | 1.148e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.58413634140365 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7646117260335463, dt = 0.003652931508386781
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 202.08 us (91.3%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (62.5%)
Info: cfl dt = 0.0036529315083868637 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7903e+05 | 65536 | 2 | 1.132e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.18935992510838 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7682646575419332, dt = 0.0036529315083868637
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 204.15 us (91.2%)
LB move op cnt : 0
LB apply : 3.40 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (55.1%)
Info: cfl dt = 0.003652931508386952 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.11117389776399 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.77191758905032, dt = 0.003652931508386952
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 205.78 us (91.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.6%)
Info: cfl dt = 0.003652931508387046 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8205e+05 | 65536 | 2 | 1.126e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.79506919779344 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.775570520558707, dt = 0.003652931508387046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 218.71 us (91.7%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (51.0%)
Info: cfl dt = 0.0036529315083871456 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4053e+05 | 65536 | 2 | 1.212e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.46414821198698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.779223452067094, dt = 0.0036529315083871456
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.82 us (0.9%)
gen split merge : 1.30 us (0.6%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 193.65 us (91.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (58.3%)
Info: cfl dt = 0.0036529315083872515 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7385e+05 | 65536 | 2 | 1.142e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.14872978033975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.782876383575481, dt = 0.0036529315083872515
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 202.72 us (90.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.9%)
Info: cfl dt = 0.0036529315083873646 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8377e+05 | 65536 | 2 | 1.123e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.14012010048422 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7865293150838684, dt = 0.0036529315083873646
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 204.98 us (91.2%)
LB move op cnt : 0
LB apply : 3.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (53.7%)
Info: cfl dt = 0.003652931508387484 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8303e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.99142175100971 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7901822465922557, dt = 0.003652931508387484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 223.91 us (88.0%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (60.9%)
Info: cfl dt = 0.003652931508387612 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5815e+05 | 65536 | 2 | 1.174e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.9999767509326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7938351781006432, dt = 0.003652931508387612
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 192.50 us (90.7%)
LB move op cnt : 0
LB apply : 3.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (55.8%)
Info: cfl dt = 0.003652931508387747 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6941e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.25961927060912 (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 : 5.72 us (2.3%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 232.38 us (92.1%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (59.7%)
Info: cfl dt = 0.0036529315083878447 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.84769929659434 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1155.456389271 (s) [Godunov][rank=0]
amr::Godunov: t = 1.8, dt = 0.0036529315083878447
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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 (2.5%)
patch tree reduce : 2.36 us (0.8%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 276.50 us (92.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (59.1%)
Info: cfl dt = 0.0036529315083879948 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8058e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.50018675741002 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8036529315083878, dt = 0.0036529315083879948
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 203.33 us (91.1%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (52.0%)
Info: cfl dt = 0.003652931508388154 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7296e+05 | 65536 | 2 | 1.386e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.9045737518216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8073058630167758, dt = 0.003652931508388154
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 207.28 us (91.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (54.0%)
Info: cfl dt = 0.0036529315083883226 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7649e+05 | 65536 | 2 | 1.137e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.67956359057908 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.810958794525164, dt = 0.0036529315083883226
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.4%)
LB compute : 202.25 us (91.5%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.9%)
Info: cfl dt = 0.003652931508388502 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2265e+05 | 65536 | 2 | 1.254e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.87559379276784 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8146117260335524, dt = 0.003652931508388502
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 230.65 us (92.1%)
LB move op cnt : 0
LB apply : 3.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (61.0%)
Info: cfl dt = 0.0036529315083886926 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6847e+05 | 65536 | 2 | 1.153e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.06961197795546 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8182646575419408, dt = 0.0036529315083886926
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 201.03 us (91.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (52.9%)
Info: cfl dt = 0.0036529315083888947 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8055e+05 | 65536 | 2 | 1.129e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.49332286336556 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8219175890503294, dt = 0.0036529315083888947
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.07 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 186.84 us (90.6%)
LB move op cnt : 0
LB apply : 3.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (53.4%)
Info: cfl dt = 0.003652931508389108 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2371e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.02196561697376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8255705205587183, dt = 0.003652931508389108
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.7%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 188.70 us (90.4%)
LB move op cnt : 0
LB apply : 3.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (54.7%)
Info: cfl dt = 0.0036529315083893353 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3239e+05 | 65536 | 2 | 1.231e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.8302461912805 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8292234520671073, dt = 0.0036529315083893353
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 962.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 177.68 us (90.1%)
LB move op cnt : 0
LB apply : 2.97 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (58.7%)
Info: cfl dt = 0.0036529315083895764 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8608e+05 | 65536 | 2 | 1.118e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.60391113758848 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8328763835754966, dt = 0.0036529315083895764
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 221.89 us (91.7%)
LB move op cnt : 0
LB apply : 3.67 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (60.4%)
Info: cfl dt = 0.0036529315083898323 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8243e+05 | 65536 | 2 | 1.125e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.87156838814596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8365293150838862, dt = 0.0036529315083898323
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 203.48 us (91.3%)
LB move op cnt : 0
LB apply : 3.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (53.3%)
Info: cfl dt = 0.0036529315083901046 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3859e+05 | 65536 | 2 | 1.217e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.07473948861362 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.840182246592276, dt = 0.0036529315083901046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 214.36 us (91.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (57.8%)
Info: cfl dt = 0.003652931508390392 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7688e+05 | 65536 | 2 | 1.136e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.75845754855959 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.843835178100666, dt = 0.003652931508390392
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.77 us (0.9%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 186.11 us (90.7%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (55.7%)
Info: cfl dt = 0.003652931508390697 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7612e+05 | 65536 | 2 | 1.138e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.60447413742615 (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.49 us (2.7%)
patch tree reduce : 1.86 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 185.79 us (90.5%)
LB move op cnt : 0
LB apply : 3.34 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (57.0%)
Info: cfl dt = 0.0036529315083909182 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7546e+05 | 65536 | 2 | 1.139e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.40334785343457 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1157.21489311 (s) [Godunov][rank=0]
amr::Godunov: t = 1.85, dt = 0.0036529315083909182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.88 us (2.9%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 249.63 us (91.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (55.8%)
Info: cfl dt = 0.0036529315083912556 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6921e+05 | 65536 | 2 | 1.151e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.21857670384692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.853652931508391, dt = 0.0036529315083912556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 207.77 us (91.6%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (60.5%)
Info: cfl dt = 0.0036529315083916134 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8950e+05 | 65536 | 2 | 1.112e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.29063774409151 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8573058630167822, dt = 0.0036529315083916134
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 236.93 us (92.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (56.2%)
Info: cfl dt = 0.003652931508391992 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9673e+05 | 65536 | 2 | 1.319e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.67499912729158 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8609587945251738, dt = 0.003652931508391992
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 232.74 us (92.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.3%)
Info: cfl dt = 0.0036529315083923927 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8471e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.32885532068758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8646117260335657, dt = 0.0036529315083923927
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 184.38 us (90.7%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.2%)
Info: cfl dt = 0.003652931508392818 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8364e+05 | 65536 | 2 | 1.355e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.0471638017049 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8682646575419581, dt = 0.003652931508392818
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.02 us (1.0%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 192.29 us (90.8%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (53.8%)
Info: cfl dt = 0.0036529315083932683 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7237e+05 | 65536 | 2 | 1.145e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.8518656272793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.871917589050351, dt = 0.0036529315083932683
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 190.45 us (90.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.8%)
Info: cfl dt = 0.0036529315083937463 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5817e+05 | 65536 | 2 | 1.174e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.00343942734808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8755705205587443, dt = 0.0036529315083937463
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 205.51 us (91.5%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (57.4%)
Info: cfl dt = 0.003652931508394252 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3744e+05 | 65536 | 2 | 1.219e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.84422279781677 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.879223452067138, dt = 0.003652931508394252
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 213.79 us (91.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (57.5%)
Info: cfl dt = 0.0036529315083947867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3647e+05 | 65536 | 2 | 1.222e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.64862830083099 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8828763835755322, dt = 0.0036529315083947867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.77 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 186.34 us (89.5%)
LB move op cnt : 0
LB apply : 5.71 us (2.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (60.0%)
Info: cfl dt = 0.0036529315083953543 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4001e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.2923813254556 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.886529315083927, dt = 0.0036529315083953543
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 203.21 us (91.0%)
LB move op cnt : 0
LB apply : 3.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (53.0%)
Info: cfl dt = 0.0036529315083959554 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.73106744568616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8901822465923224, dt = 0.0036529315083959554
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 1.31 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 232.83 us (92.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (54.7%)
Info: cfl dt = 0.0036529315083965908 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3567e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.4223547171941 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8938351781007183, dt = 0.0036529315083965908
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 213.11 us (91.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (57.8%)
Info: cfl dt = 0.003652931508397264 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2946e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.17607399409658 (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 : 5.45 us (2.4%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 203.80 us (91.2%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (54.1%)
Info: cfl dt = 0.00365293150839775 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3368e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.84009088733876 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1159.116589402 (s) [Godunov][rank=0]
amr::Godunov: t = 1.9000000000000001, dt = 0.00365293150839775
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.26 us (2.4%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 326.77 us (93.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (59.3%)
Info: cfl dt = 0.00365293150839849 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5180e+05 | 65536 | 2 | 1.188e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.72594033084444 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9036529315083979, dt = 0.00365293150839849
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 201.21 us (91.0%)
LB move op cnt : 0
LB apply : 3.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (55.6%)
Info: cfl dt = 0.0036529315083992727 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5094e+05 | 65536 | 2 | 1.190e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.55302804429493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9073058630167963, dt = 0.0036529315083992727
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 215.96 us (91.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (57.4%)
Info: cfl dt = 0.0036529315084001006 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1625e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.52608477327016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9109587945251956, dt = 0.0036529315084001006
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 199.28 us (91.2%)
LB move op cnt : 0
LB apply : 2.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (53.8%)
Info: cfl dt = 0.003652931508400978 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2687e+05 | 65536 | 2 | 1.244e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.72322143895309 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9146117260335958, dt = 0.003652931508400978
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 216.67 us (91.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (46.4%)
Info: cfl dt = 0.003652931508401905 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6045e+05 | 65536 | 2 | 1.169e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.46081006399898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9182646575419968, dt = 0.003652931508401905
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1.84 us (0.8%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 199.91 us (90.9%)
LB move op cnt : 0
LB apply : 3.44 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (58.0%)
Info: cfl dt = 0.0036529315084028856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.2128e+05 | 65536 | 2 | 1.257e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.60096273097959 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9219175890503988, dt = 0.0036529315084028856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.82 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 258.22 us (92.9%)
LB move op cnt : 0
LB apply : 3.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (61.0%)
Info: cfl dt = 0.003652931508403922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5992e+05 | 65536 | 2 | 1.170e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.35478865988547 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9255705205588016, dt = 0.003652931508403922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 209.92 us (91.7%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (54.4%)
Info: cfl dt = 0.0036529315084050185 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.1877e+05 | 65536 | 2 | 1.263e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.097901723606 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9292234520672056, dt = 0.0036529315084050185
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 230.19 us (92.0%)
LB move op cnt : 0
LB apply : 3.53 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (53.0%)
Info: cfl dt = 0.0036529315084061777 [amr::basegodunov][rank=0]
Info: Timestep perf 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.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.65264953665319 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9328763835756106, dt = 0.0036529315084061777
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 188.56 us (90.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.9%)
Info: cfl dt = 0.003652931508407402 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8485e+05 | 65536 | 2 | 1.121e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.35734369719188 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9365293150840168, dt = 0.003652931508407402
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.4%)
patch tree reduce : 2.10 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 206.09 us (91.1%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (56.1%)
Info: cfl dt = 0.0036529315084086957 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.0845e+05 | 65536 | 2 | 1.289e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.02613618267057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9401822465924243, dt = 0.0036529315084086957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 238.44 us (92.2%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (57.4%)
Info: cfl dt = 0.0036529315084100635 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8304e+05 | 65536 | 2 | 1.124e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.99337743283208 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.943835178100833, dt = 0.0036529315084100635
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (3.1%)
patch tree reduce : 2.10 us (1.1%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 175.69 us (89.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (61.4%)
Info: cfl dt = 0.0036529315084115094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8791e+05 | 65536 | 2 | 1.343e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.90429255534725 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9474881096092431, dt = 0.0025118903907570544
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 216.44 us (91.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (56.2%)
Info: cfl dt = 0.0036529315084125515 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9890e+05 | 65536 | 2 | 1.314e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.83873607537905 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1160.981933579 (s) [Godunov][rank=0]
amr::Godunov: t = 1.9500000000000002, dt = 0.0036529315084125515
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance 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.78 us (3.1%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 228.43 us (90.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (55.6%)
Info: cfl dt = 0.0036529315084141384 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4062e+05 | 65536 | 2 | 1.212e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.48092901207923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9536529315084128, dt = 0.0036529315084141384
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 1.82 us (0.9%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 189.36 us (90.8%)
LB move op cnt : 0
LB apply : 3.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (53.2%)
Info: cfl dt = 0.0036529315084158124 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5633e+05 | 65536 | 2 | 1.178e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.63325059824751 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.957305863016827, dt = 0.0036529315084158124
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.06 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 188.86 us (90.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (54.8%)
Info: cfl dt = 0.003652931508417582 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4302e+05 | 65536 | 2 | 1.207e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.96341327702113 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9609587945252427, dt = 0.003652931508417582
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 188.79 us (90.5%)
LB move op cnt : 0
LB apply : 3.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.0%)
Info: cfl dt = 0.0036529315084194497 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7166e+05 | 65536 | 2 | 1.146e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114.7105804220421 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9646117260336602, dt = 0.0036529315084194497
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.6%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 187.14 us (90.5%)
LB move op cnt : 0
LB apply : 3.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.1%)
Info: cfl dt = 0.0036529315084214216 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8495e+05 | 65536 | 2 | 1.120e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.37789453028748 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9682646575420797, dt = 0.0036529315084214216
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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.94 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 : 259.96 us (92.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (54.3%)
Info: cfl dt = 0.0036529315084235037 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8087e+05 | 65536 | 2 | 1.128e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.55791942780641 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9719175890505012, dt = 0.0036529315084235037
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 210.93 us (90.1%)
LB move op cnt : 0
LB apply : 3.89 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.2%)
Info: cfl dt = 0.003652931508425701 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7993e+05 | 65536 | 2 | 1.366e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.30291481734122 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9755705205589247, dt = 0.003652931508425701
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 215.49 us (91.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.5%)
Info: cfl dt = 0.003652931508428021 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8571e+05 | 65536 | 2 | 1.349e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.46261845430543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9792234520673504, dt = 0.003652931508428021
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.2%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 231.46 us (92.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (56.0%)
Info: cfl dt = 0.0036529315084304695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8414e+05 | 65536 | 2 | 1.122e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.21438596865114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9828763835757783, dt = 0.0036529315084304695
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 195.14 us (91.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (57.3%)
Info: cfl dt = 0.003652931508433053 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8690e+05 | 65536 | 2 | 1.117e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117.76865455207192 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9865293150842087, dt = 0.003652931508433053
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.3%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.38 us (0.6%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 220.67 us (91.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (57.3%)
Info: cfl dt = 0.0036529315084357786 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6622e+05 | 65536 | 2 | 1.157e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.61925684969567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9901822465926418, dt = 0.0036529315084357786
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.1%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 240.13 us (92.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (58.0%)
Info: cfl dt = 0.0036529315084386526 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5806e+05 | 65536 | 2 | 1.174e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.9808185728287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9938351781010775, dt = 0.0036529315084386526
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [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 (2.5%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 189.96 us (90.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (56.0%)
Info: cfl dt = 0.0036529315084416866 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9526e+05 | 65536 | 2 | 1.323e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.37982893664474 (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.15 us (2.6%)
patch tree reduce : 1.99 us (1.0%)
gen split merge : 1.14 us (0.6%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 177.87 us (90.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (52.2%)
Info: cfl dt = 0.0036529315084438707 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8960e+05 | 65536 | 2 | 1.339e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.55626003082958 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1162.736710316 (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: (19 minutes 38.878 seconds)
Estimated memory usage: 513 MB






